我目前正在嘗試使用Android交叉編譯工具鏈編譯Android的GnuTLS(for wget)。#包括<exception> - 沒有這樣的文件或目錄
我已經解決了許多缺少庫的錯誤,但現在我得到
./includes/gnutls/gnutlsxx.h:26:21: fatal error: exception: No such file or directory
#include <exception>
我使用 「在arm-linux的-androideabi與海合會(GCC)4.9 20140827(預發佈)」 和現在用的這個錯誤用於設置env變量的腳本https://gist.github.com/z3ntu/57b95b02ebe8e153d5a8。
你可以顯示相應的命令行嗎? –
我正在使用「android_configure --without-p11-kit」,它使用額外的環境變量調用./configure,並在使用「make」時出現錯誤@MarcGlisse – z3ntu
make執行一堆命令。特別是,它執行類似'.../g ++ some_options some_file.cc',這會導致你得到的錯誤。看到這條線會有所幫助。 (這可能是'make V = 1'更冗長,並顯示該命令,如果普通'make'沒有)。 –