2012-11-14 68 views
1

我正在嘗試使用FMOD,我正在重新創建一個示例項目。當程序加載,它說靜態鏈接到xcode 4.5中的.dylib錯誤

dyld: Library not loaded: ./libfmodex.dylib 
    Referenced from:  (...project filepath...) 
    Reason: image not found 

我被要建立目標的階段,擴大與二進制文件的鏈接,點擊+號,點擊等,然後導航到libfmodex.dylib鏈接。然後它會自動填寫庫搜索路徑。

該程序可以構建並運行,但會立即停止並顯示上述錯誤消息。是否有某種我錯過的編譯器標誌?

回答

0

我發現在其他地方,它需要添加一個構建腳本(靶>打造phases->添加構建相位>運行腳本)

cp "/absolute/filepath/of/your/libfmodex.dylib" . 
cp -f "$TARGET_BUILD_DIR/$PRODUCT_NAME" . 
cp "/absolute/filepath/of/your/libfmodex.dylib" "$TARGET_BUILD_DIR"