iOS小記--libtool: can't locate file for: -lPods-xxx

weixin_33912445發表於2017-10-08

先說下我遇到的情況,需求是將一個包含cocoapods的framework打成混合的framework,這裡用到lipo -create,有很多優秀的部落格都提到了如何打包的問題,同時還提到了一種更加方便的方式,使用Aggregate(我的坑也就是這裡來的)。

***�


  • 填坑過程不再贅述,這裡貼一下報錯資訊。標題裡是我通過百度搜尋的關鍵字,但是我運氣不太好,沒能找到有效的答案。
694545-2b49dcea40fa43fa.png
螢幕快照 2017-10-08 14.41.33.png
  • 原因
    說起來其實很簡單,還記得在做xcodebuild打包的時候有一句話,如果專案包含workspace,請使用-workspace關鍵字替代-target。是的,問題就是這麼簡單,前文部落格裡提供的指令碼是針對一般的framework打包的,並沒有使用workspace,而我的專案因為用到了cocoapods,所以悲劇了。

  • 後記
    後面在build過程中還有遇到一個路徑不對導致的報錯問題,修改路徑成有效路徑就好。貼一下修改之後的指令碼,適用於帶有.xcworkspace的專案。

# Sets the target folders and the final framework product.

# 如果工程名稱和Framework的Target名稱不一樣的話,要自定義FMKNAME

# 例如: FMK_NAME = "MyFramework"

FMK_NAME=${PROJECT_NAME}

# Install dir will be the final output to the framework.

# The following line create it in the root folder of the current project.

INSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework

# Working dir will be deleted after the framework creation.

WRK_DIR=${SRCROOT}/build

DEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework

SIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework

# -configuration ${CONFIGURATION}
# CONFIGURATION_BUILD_DIR=xxx
# Clean and Building both architectures.
# 適用於帶有.xcworkspace ,否則請檢視:(http://yzlyty.github.io/2016/11/22/create-a-framework-and-bundle-containing-resources-for-ios-oc/)
xcodebuild -configuration "Release" -workspace "${FMK_NAME}".xcworkspace -scheme "${FMK_NAME}" -sdk iphoneos clean build CONFIGURATION_BUILD_DIR=${WRK_DIR}/Release-iphoneos

xcodebuild -configuration "Release" -workspace "${FMK_NAME}".xcworkspace -scheme "${FMK_NAME}" -sdk iphonesimulator clean build CONFIGURATION_BUILD_DIR=${WRK_DIR}/Release-iphonesimulator

# Cleaning the oldest.

if [ -d "${INSTALL_DIR}" ]

then

rm -rf "${INSTALL_DIR}"

fi

mkdir -p "${INSTALL_DIR}"

cp -R "${DEVICE_DIR}/" "${INSTALL_DIR}/"

# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.

lipo -create "${DEVICE_DIR}/${FMK_NAME}" "${SIMULATOR_DIR}/${FMK_NAME}" -output "${INSTALL_DIR}/${FMK_NAME}"

rm -r "${WRK_DIR}"

open "${INSTALL_DIR}"

相關文章