菜鸟教程小白 发表于 2022-12-12 20:01:09

ios - Xcode 库因 Xcode 5.1 损坏 - "Assertion failed"


                                            <p><p>自从更新到 Xcode 5.1 后,我开始收到一个问题:</p>

<pre><code>ld: warning: ignoring file /Users/User/Dropbox/Apps/MyApplication/Frameworks/Project.framework/Project, missing required architecture x86_64 in file /Users/User/Dropbox/Apps/MyApplication/Frameworks/Project.framework/Project (3 slices)
</code></pre>

<p>我尝试重新编译我的框架“<code>Project</code>”,但现在在执行运行脚本时收到错误消息。我将在下面添加运行脚本,但这是错误:</p>

<pre><code>Ld /Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Intermediates/ProjectFramework.build/Release-iphoneos/Project.build/Objects-normal/arm64/Project normal arm64
    cd &#34;/Users/User/Dropbox/VRG - IP/Frameworks/ProjectFramework&#34;
    export IPHONEOS_DEPLOYMENT_TARGET=6.1
    export PATH=&#34;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin&#34;
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch arm64 -r -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk -L/Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Products/Release-iphoneos -F/Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Products/Release-iphoneos -F/Applications/Xcode.app/Contents/Developer/Library/Frameworks -filelist /Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Intermediates/ProjectFramework.build/Release-iphoneos/Project.build/Objects-normal/arm64/Project.LinkFileList -fobjc-arc -fobjc-link-runtime -miphoneos-version-min=6.1 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/usr/lib/dylib1.o -framework UIKit -framework Foundation -Xlinker -dependency_info -Xlinker /Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Intermediates/ProjectFramework.build/Release-iphoneos/Project.build/Objects-normal/arm64/Project_dependency_info.dat -o /Users/User/Library/Developer/Xcode/DerivedData/ProjectFramework-amlfgqgbrymfibbrhnqkcgwjkedv/Build/Intermediates/ProjectFramework.build/Release-iphoneos/Project.build/Objects-normal/arm64/Project

ld: warning: unexpected dylib (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks//UIKit.framework/UIKit) on link line
ld: warning: unexpected dylib (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks//Foundation.framework/Foundation) on link line
ld: warning: unexpected dylib (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/usr/lib/libobjc.dylib) on link line
ld: warning: unexpected dylib (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/usr/lib/libSystem.dylib) on link line
00x1034edf93__assert_rtn + 144
10x10355774ald::Atom::setSectionStartAddress(unsigned long long) + 0
20x103546e6cld::tool::SectionRelocationsAtom&lt;arm64&gt;::encodeSectionReloc(ld::Internal::FinalSection*, ld::tool::SectionRelocationsAtom&lt;arm64&gt;::Entry const&amp;, std::__1::vector&lt;macho_relocation_info&lt;Pointer64&lt;LittleEndian&gt; &gt;, std::__1::allocator&lt;macho_relocation_info&lt;Pointer64&lt;LittleEndian&gt; &gt; &gt; &gt;&amp;) + 84
30x10356d7ecld::tool::SectionRelocationsAtom&lt;arm64&gt;::encode() + 62
40x10354cc82ld::tool::OutputFile::updateLINKEDITAddresses(ld::Internal&amp;) + 454
50x103547968ld::tool::OutputFile::write(ld::Internal&amp;) + 138
60x1034eec40main + 1012
A linker snapshot was created at:
    /tmp/Project-2014-02-11-125437.ld-snapshot
ld: Assertion failed: (_machoSection != 0), function machoSection, file /SourceCache/ld64/ld64-236.3/src/ld/ld.hpp, line 714.
clang: error: linker command failed with exit code 1 (use -v to see invocation)
</code></pre>

<p>这是运行脚本(<a href="http://simplyitinc.blogspot.ca/2011/04/creating-static-framework-in-xcode-4.html" rel="noreferrer noopener nofollow">referenced from this tutorial</a>):</p>

<pre><code># Sets the target folders and the final framework product.
FMK_NAME=VRGViews
FMK_VERSION=A

# 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=build
DEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework
SIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework

# Building both architectures.
xcodebuild -configuration &#34;Release&#34; -target &#34;${FMK_NAME}&#34; -sdk iphoneos
xcodebuild -configuration &#34;Release&#34; -target &#34;${FMK_NAME}&#34; -sdk iphonesimulator

# Cleaning the oldest.
if [ -d &#34;${INSTALL_DIR}&#34; ]
then
rm -rf &#34;${INSTALL_DIR}&#34;
fi

# Creates and renews the final product folder.
mkdir -p &#34;${INSTALL_DIR}&#34;
mkdir -p &#34;${INSTALL_DIR}/Versions&#34;
mkdir -p &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}&#34;
mkdir -p &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources&#34;
mkdir -p &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers&#34;

# Creates the internal links.
# It MUST uses relative path, otherwise will not work when the folder is copied/moved.
ln -s &#34;${FMK_VERSION}&#34; &#34;${INSTALL_DIR}/Versions/Current&#34;
ln -s &#34;Versions/Current/Headers&#34; &#34;${INSTALL_DIR}/Headers&#34;
ln -s &#34;Versions/Current/Resources&#34; &#34;${INSTALL_DIR}/Resources&#34;
ln -s &#34;Versions/Current/${FMK_NAME}&#34; &#34;${INSTALL_DIR}/${FMK_NAME}&#34;

# Copies the headers and resources files to the final product folder.
cp -R &#34;${DEVICE_DIR}/Headers/&#34; &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers/&#34;
cp -R &#34;${DEVICE_DIR}/&#34; &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/&#34;

# Removes the binary and header from the resources folder.
rm -r &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/Headers&#34; &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/${FMK_NAME}&#34;

# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.
lipo -create &#34;${DEVICE_DIR}/${FMK_NAME}&#34; &#34;${SIMULATOR_DIR}/${FMK_NAME}&#34; -output &#34;${INSTALL_DIR}/Versions/${FMK_VERSION}/${FMK_NAME}&#34;

rm -r &#34;${WRK_DIR}&#34;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看来您只需<strong>将 MACH-O 从可重定位对象文件更改为静态库</strong>。一切都应该没问题。
作为示例,您可以查看 GPUImage 框架项目设置及其构建脚本:</p>

<pre><code>#!/bin/bash

set -e

IOSSDK_VER=&#34;7.0&#34;

# xcodebuild -showsdks

cd framework
xcodebuild -project GPUImage.xcodeproj -target GPUImage -configuration Release -sdk iphoneos${IOSSDK_VER} build
xcodebuild -project GPUImage.xcodeproj -target GPUImage -configuration Release -sdk iphonesimulator${IOSSDK_VER} build
cd ..

cd build
# for the fat lib file
mkdir -p Release-iphone/lib
xcrun -sdk iphoneos lipo -create Release-iphoneos/libGPUImage.a Release-iphonesimulator/libGPUImage.a -output Release-iphone/lib/libGPUImage.a
xcrun -sdk iphoneos lipo -info Release-iphone/lib/libGPUImage.a
# for header files
mkdir -p Release-iphone/include
cp ../framework/Source/*.h Release-iphone/include
cp ../framework/Source/iOS/*.h Release-iphone/include

# Build static framework
mkdir -p GPUImage.framework/Versions/A
cp Release-iphone/lib/libGPUImage.a GPUImage.framework/Versions/A/GPUImage
mkdir -p GPUImage.framework/Versions/A/Headers
cp Release-iphone/include/*.h GPUImage.framework/Versions/A/Headers
ln -sfh A GPUImage.framework/Versions/Current
ln -sfh Versions/Current/GPUImage GPUImage.framework/GPUImage
ln -sfh Versions/Current/Headers GPUImage.framework/Headers
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Xcode 库因 Xcode 5.1 损坏 -&#34;Assertion failed&#34;,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22331686/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22331686/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Xcode 库因 Xcode 5.1 损坏 - &#34;Assertion failed&#34;