使用 g 和 -pthread 標誌編譯 C 程式碼啟用多執行緒時,使用 -static 靜態連結 pthread 函式庫可能會導致分段錯誤。發生這種情況的原因是靜態連結的 pthread 庫缺少必要的弱符號,包括 glibc 庫中定義的 pthread_mutex_lock()。
要解決此問題,請透過傳遞連結器的 -lpthread 標誌。這將強制連結器包含 pthread 共享庫版本中所需的弱符號。
或者,如果需要靜態鏈接,請使用以下命令編譯程序:
g++ -o one one.cpp -Wall -std=c++11 -O3 -static -lrt -pthread \ -Wl,--whole-archive -lpthread -Wl,--no-whole-archive
-Wl,--whole-archive 選項強制鏈接器包含pthread 庫中的所有目標文件,確保包含所需的弱符號。 -Wl,--no-whole-archive 選項會關閉後續存檔檔案的此行為。
以上是以下是一些適合您文章內容的基於問題的標題: * 為什麼在 C 編譯中使用 -static 和 -pthread 會導致分段錯誤? * 如何解決分段錯誤的詳細內容。更多資訊請關注PHP中文網其他相關文章!