2011-12-19 11 views
2

Build fat static library (device + simulator) using Xcode and SDK 4+のガイドに従って、libmms(https://github.com/kosher-penguin/xcode-libmms)をビルドしましたが、静的な静的ライブラリがありましたが、うまくいかないようです。 (xCode4.2 + iOS5.0)私のプロジェクトにライブラリを追加するとき、私はエラーを得た:armv6、armv7、i386のfat静的ライブラリの構築方法

Undefined symbols for architecture armv7: 
    "_iconv_close", referenced from: 
     _mms_connect in libMMS.a(mms.o) 
    "_Status_GetNewStatusByKey", referenced from: 
     _report_progress in libMMS.a(mms.o) 
    "_Status_SetNewStatusByKey", referenced from: 
     _report_progress in libMMS.a(mms.o) 
    "_iconv", referenced from: 
     _string_utf16 in libMMS.a(mms.o) 
    "_iconv_open", referenced from: 
     _mms_connect in libMMS.a(mms.o) 
ld: symbol(s) not found for architecture armv7 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

はまず、私は第二に、私はxCode4.2で開きhttps://github.com/kosher-penguin/xcode-libmms.git からコードクローンを作成し、フォローを追加しますスクリプトを実行して(ビルド段階)、プロジェクトを実行します。 第3に、libmms.aという名前のファイルをRelease-Universalという名前のフォルダにコピーしてから、そのライブラリを新しいプロジェクトに追加します。 第4に、新しいプロジェクトでは、xcode-libmmsプロジェクトからヘッダーファイルをインポートし、mms.hとmms_config.hをインポートし、関数mms_connectを呼び出してビルドしますが、エラーは発生します。

DEBUG_THIS_SCRIPT="false" 

if [ $DEBUG_THIS_SCRIPT = "true" ] 
then 
echo "########### TESTS #############" 
echo "Use the following variables when debugging this script; note that they may change on recursions" 
echo "BUILD_DIR = $BUILD_DIR" 
echo "BUILD_ROOT = $BUILD_ROOT" 
echo "CONFIGURATION_BUILD_DIR = $CONFIGURATION_BUILD_DIR" 
echo "BUILT_PRODUCTS_DIR = $BUILT_PRODUCTS_DIR" 
echo "CONFIGURATION_TEMP_DIR = $CONFIGURATION_TEMP_DIR" 
echo "TARGET_BUILD_DIR = $TARGET_BUILD_DIR" 
fi 

#####################[ part 1 ]################## 
# First, work out the BASESDK version number (NB: Apple ought to report this, but they hide it) 
# (incidental: searching for substrings in sh is a nightmare! Sob) 

SDK_VERSION=$(echo ${SDK_NAME} | grep -o '.\{3\}$') 

# Next, work out if we're in SIM or DEVICE 

if [ ${PLATFORM_NAME} = "iphonesimulator" ] 
then 
OTHER_SDK_TO_BUILD=iphoneos${SDK_VERSION} 
else 
OTHER_SDK_TO_BUILD=iphonesimulator${SDK_VERSION} 
fi 

echo "XCode has selected SDK: ${PLATFORM_NAME} with version: ${SDK_VERSION} (although back-targetting: ${IPHONEOS_DEPLOYMENT_TARGET})" 
echo "...therefore, OTHER_SDK_TO_BUILD = ${OTHER_SDK_TO_BUILD}" 
# 
#####################[ end of part 1 ]################## 

#####################[ part 2 ]################## 
# 
# IF this is the original invocation, invoke WHATEVER other builds are required 
# 
# Xcode is already building ONE target... 
# 
# ...but this is a LIBRARY, so Apple is wrong to set it to build just one. 
# ...we need to build ALL targets 
# ...we MUST NOT re-build the target that is ALREADY being built: Xcode WILL CRASH YOUR COMPUTER if you try this (infinite recursion!) 
# 
# 
# So: build ONLY the missing platforms/configurations. 

if [ "true" == ${ALREADYINVOKED:-false} ] 
then 
echo "RECURSION: I am NOT the root invocation, so I'm NOT going to recurse" 
else 
# CRITICAL: 
# Prevent infinite recursion (Xcode sucks) 
export ALREADYINVOKED="true" 

echo "RECURSION: I am the root ... recursing all missing build targets NOW..." 
echo "RECURSION: ...about to invoke: xcodebuild -configuration \"${CONFIGURATION}\" -target \"${TARGET_NAME}\" -sdk \"${OTHER_SDK_TO_BUILD}\" ${ACTION} RUN_CLANG_STATIC_ANALYZER=NO" 
xcodebuild -configuration "${CONFIGURATION}" -target "${TARGET_NAME}" -sdk "${OTHER_SDK_TO_BUILD}" ${ACTION} RUN_CLANG_STATIC_ANALYZER=NO BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" 

ACTION="build" 

#Merge all platform binaries as a fat binary for each configurations. 

# Calculate where the (multiple) built files are coming from: 
CURRENTCONFIG_DEVICE_DIR=${SYMROOT}/${CONFIGURATION}-iphoneos 
CURRENTCONFIG_SIMULATOR_DIR=${SYMROOT}/${CONFIGURATION}-iphonesimulator 

echo "Taking device build from: ${CURRENTCONFIG_DEVICE_DIR}" 
echo "Taking simulator build from: ${CURRENTCONFIG_SIMULATOR_DIR}" 

CREATING_UNIVERSAL_DIR=${SYMROOT}/${CONFIGURATION}-universal 
echo "...I will output a universal build to: ${CREATING_UNIVERSAL_DIR}" 

# ... remove the products of previous runs of this script 
#  NB: this directory is ONLY created by this script - it should be safe to delete! 

rm -rf "${CREATING_UNIVERSAL_DIR}" 
mkdir "${CREATING_UNIVERSAL_DIR}" 

# 
echo "lipo: for current configuration (${CONFIGURATION}) creating output file: ${CREATING_UNIVERSAL_DIR}/${EXECUTABLE_NAME}" 
lipo -create -output "${CREATING_UNIVERSAL_DIR}/${EXECUTABLE_NAME}" "${CURRENTCONFIG_DEVICE_DIR}/${EXECUTABLE_NAME}" "${CURRENTCONFIG_SIMULATOR_DIR}/${EXECUTABLE_NAME}" 

######### 
# 
# Added: StackOverflow suggestion to also copy "include" files 
# (untested, but should work OK) 
# 
if [ -d "${CURRENTCONFIG_DEVICE_DIR}/usr/local/include" ] 
then 
mkdir -p "${CREATING_UNIVERSAL_DIR}/usr/local/include" 
# * needs to be outside the double quotes? 
cp "${CURRENTCONFIG_DEVICE_DIR}/usr/local/include/"* "${CREATING_UNIVERSAL_DIR}/usr/local/include" 
fi 
fi 

お願いします。ありがとうございます。

更新: は後に次のように、エラーをlibiconvのライブラリを追加します。

Undefined symbols for architecture armv7: 
    "_Status_GetNewStatusByKey", referenced from: 
     _report_progress in libMMS.a(mms.o) 
    "_Status_SetNewStatusByKey", referenced from: 
     _report_progress in libMMS.a(mms.o) 
ld: symbol(s) not found for architecture armv7 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
+0

ライブラリの作成方法を教えてください。 – mattjgalloway

答えて

2

は、問題の一つは、あなたのライブラリがlibiconvに依存しているということです。ライブラリを使用する場合は、libMMSを追加するだけでなく、XCodeインストールに付属するlibiconvも追加する必要があります。それをプロジェクトに追加する方法については、libiconv not linking to iOS projectを参照してください。

どのような依存関係_Status_GetNewStatusByKey_Status_SetNewStatusByKeyがわかりません。彼らは似ているかもしれません。

更新:

第二の問題点はどこにも定義されていないような機能Status_GetNewStatusByKeyStatus_SetNewStatusByKeyを、使用していますmms.c関数report_progress()です(あなたが警告を取得していないあなたはライブラリがコンパイル?)。 report_progress()を宣言、定義、または使用するものはすべて削除してください。とにかくlibmmsの最新バージョンで削除されました。

+0

あなたが言ったように、あなたに感謝し、後に、エラーが発生したlibiconvを追加:アーキテクチャのARMv7のための未定義のシンボル: "_Status_GetNewStatusByKey" から参照:libMMS.aで _report_progress(mms.o) "_Status_SetNewStatusByKey"、から参照: _report_progressをlibmMS.a(mms.o) ld:アーキテクチャarmv7のシンボルが見つかりません clang:エラー:リンカーコマンドが終了コード1で失敗しました(呼び出しを見るために-vを使用) – wilson

+0

@wilson:ソリューションの2番目の部分。 – Codo

+0

、ありがとう、それは今構築することができますが、私はまだどこで実行するかエラーになります。エラーは、_malloc_initializeでEXC_BAD_ACCESSです。 – wilson

関連する問題