Note: If it is a 'bug report' or 'feature request', please select the corresponding issue template, otherwise this issue will be not replied.
问题描述
我通过命令创建一个iOS可用的framework:
xmake create -t xcode.framework -l objc++ numCppTest
然后配置
xmake f -p iphoneos -m debug -a x86_64
最后进行
xmake
构建出一个debug的 x86_64的ios模拟器可用包,但是放到ios工程内后build 没有错误,安装的时候报出错误:

我用otool -h numCppTest 发现咱们的filetyle是6,

相关文章对file_type的说明如下:

然后使用xcode 自带的cocoaFramework中选择maco-type是static,打出的mach-o的fileType是1(这里没贴出),说明咱们打出的framework和官方的不是一样的。
目前怀疑是这一块导致的,求问这个是bug吗,还是我使用的问题?
问题描述
我通过命令创建一个iOS可用的framework:

xmake create -t xcode.framework -l objc++ numCppTest然后配置
xmake f -p iphoneos -m debug -a x86_64最后进行
xmake构建出一个debug的 x86_64的ios模拟器可用包,但是放到ios工程内后build 没有错误,安装的时候报出错误:
我用otool -h numCppTest 发现咱们的filetyle是6,
相关文章对file_type的说明如下:

然后使用xcode 自带的cocoaFramework中选择maco-type是static,打出的mach-o的fileType是1(这里没贴出),说明咱们打出的framework和官方的不是一样的。
目前怀疑是这一块导致的,求问这个是bug吗,还是我使用的问题?