標籤:
最近在網上下載了 Triangle 庫,準備在程式中調用來三角化產生網格,但出現了很多錯誤,如下:
1> triangle.c
1>d:\program files\visualstudio2010\vc\include\cmath(19): error C2061: 語法錯誤: 標識符“acosf”
1>d:\program files\visualstudio2010\vc\include\cmath(19): error C2059: 語法錯誤:“;”
1>d:\program files\visualstudio2010\vc\include\cmath(19): error C2061: 語法錯誤: 標識符“asinf”
1>d:\program files\visualstudio2010\vc\include\cmath(19): error C2059: 語法錯誤:“;”
1>d:\program files\visualstudio2010\vc\include\cmath(20): error C2061: 語法錯誤: 標識符“atanf”
1>d:\program files\visualstudio2010\vc\include\cmath(20): error C2059: 語法錯誤:“;”
1>d:\program files\visualstudio2010\vc\include\cmath(20): error C2061: 語法錯誤: 標識符“atan2f”
1>d:\program files\visualstudio2010\vc\include\cmath(20): error C2059: 語法錯誤:“;”
………..
由於我使用的是VS2010,用 C++ 寫的程式,而Triangle庫是用 C 語言寫的,問題可能出在這。百度下這個錯誤,在自古英雄誰無淚的部落格中找到瞭解決辦法,更多請參考歆悰的博文和stackoverflow的ms vc++ iostream compile error。
項目 ––> 屬性 ––> 配置屬性 ––> C/C++ ––> 進階 ––> 編譯為 ––> 編譯為C++代碼
另外該博文的原作歆悰的心得很有道理,故放在這裡同時告誡自己!
心得:
所有跟C++相關的語句均報錯,應該能夠想得到是環境的問題,不善于思考了,唉。
代碼沒問題,肯定是環境的問題。
搜尋英文的解決方案比較靠譜和專業,中文的回複太多垃圾。
C 和 C++ 混合代碼 cmath編譯出錯