clone
move to the downloaded directory.
mkdir build
cd build
cmake ..
make
sudo make install
使用soil時 ,會報類似
undefined symbols for architecture x86_64:
「_soil_load_image」, referenced from:
這種錯誤,網上搜尋的話 大部分解決方法是新增-m64
這個應該是沒錯的 ,不過我使用的是xcode 所以更大的可能原因需要在專案
屬性other linker flags中新增/usr/local/lib/libsoil.dylib
Mac 下使用Xcode 配置Lua 環境並使用
安裝 在執行完make macosx 以後,我的電腦要執行一次 sudo make install 環境配置成功後,在終端中輸入lua 就會輸出lua對應的版本資訊了。使用xcode新建乙個 c 的命令列專案 配置專案屬性 build settings usr local include 對應檔案裡...
Mac 下使用Xcode 配置Lua 環境並使用1
取出 usr local lib liblua.a 與 usr local include 下的全部lua相關的lua標頭檔案 xcode新建乙個os x的command line tool 工程 將.a和include資料夾加入到工程中 main.m檔案 include include lua.h...
Mac下用Xcode建立並使用動態資料庫
然後開始敲 我寫的是乙個簡單的求和案例。標頭檔案.h 1 2 demo4 5 created by mac on 2020 7 3.6 7 89 ifndef demo h 10 define demo h 1112 include 13 14int add int a,int b 15 16 en...