2013-11-26 304 views
1

那麼我只是下載了源代碼,我相信它是正確的。但是在我使用make命令生成文件之後。錯誤出來了:我的筆記本電腦是Mac空氣致命錯誤:找不到'stdarg.h'文件

/usr/include/c++/4.2.1/cstdarg:50:10: fatal error: 'stdarg.h' file not found

任何人都可以幫助我解決這個問題??

感謝

+0

你在你的系統中有stdarg.h嗎? – Scony

+0

嘗試一個單行的C++源文件:'#include ';你有同樣的錯誤嗎?如果是這樣,你的編譯器安裝會以某種方式搞砸。 –

+0

是的Keith同樣的錯誤。我能做些什麼來解決它? – Lubor

回答

0

我升級後的Ubuntu有這個問題。還有鐺3.2安裝。明確升級到叮噹3.5,錯誤消失。

0

我有同樣的問題,這解決了它對我來說。

只要安裝命令行工具

xcode-select --install 

然後設置路徑,積極開發目錄

xcode-select -s /Library/Developer/CommandLineTools/ 

(可以查看哪個目錄設置與xcode-select -p


如果xcode-select --installxcode-select: error: command line tools are already installed但是在崩潰,你可以嘗試:

rm -rf /library/Developer/CommandLineTools 
xcode-select --install 
相關問題