MAC環境下 VS Code中C語言標頭檔案匯入錯誤

2021-09-03 07:01:19 字數 769 閱讀 8596

然後看網上解答,找到了答案,好像是因為需要路徑設定

#include errors detected. please update your includepath. intellisense features for this translation unit (/users/…/desktop/ctest/main.c) will be provided by the tag parser.

在命令列裡面輸入gcc -v -e -x c++ -在結果裡面找到頭檔案目錄,

將這些路徑值,全部copy到c_cpp_properties.json檔案中的includepath欄位下,警告消失

在命令後執行gcc -v -e -x c++ - 出現一下錯誤警告

xcrun: error: invalid active developer path (/library/developer/commandlinetools), missing xcrun at: /library/developer/commandlinetools/usr/bin/xcrun

解決方法:

開啟終端輸入

xcode-select --install

出現這個錯誤原因猜想可能是因為之前安裝過xcode解除安裝後出現的。

然後就順利解決了。

注意路徑之間要用逗號分開,並且加上引號哦~

linux下vscode配置c 除錯環境

安裝gdb apt get update apt get install gdb 直接安裝可能會出現python依賴問題,如果只用c 應該沒什麼影響 測試g ubuntu預設自帶 gdb是否正常 g helloworld.cpp o test 自己寫個helloworld gdb version c...

mac下用vscode開發go

2.下面要說個核心問題,按照以上步驟,會遇到go依賴包無法安裝的情況,這時候可以通過以下方式來解決 1 在終端cd到自己的go配置目錄 比如我的go目錄是 herochina tools go 新建資料夾golang.org x 2 cd到 herochina tools go golang.org...

Mac下vscode配置FFmpeg除錯

最近在用vscode 寫ffmpeg相關的 如果用命令列執行的話,有時候語法錯誤報的是段錯誤 segmentation fault 所以找了一下配置vscode 除錯的方法,記錄一下 1,裝一點小外掛程式 2,按照官方文件新建對應的配置檔案 官方文件 3,修改tasks.json配置檔案 4,修改l...