gpt4 book ai didi

xcode - 升级到 XCode 4 后无法链接 ppc

转载 作者:行者123 更新时间:2023-12-04 08:29:32 25 4
gpt4 key购买 nike

我关注了 these instructions关于如何在升级到 XCode 4 后让 10.4 SDK 与 PPC 一起工作。我能够编译,但在链接时出错。

作为一个额外的问题,我没有使用 XCode 本身,而是使用它附带的 gcc 工具链。 (这是使用 makefile 的大型跨平台项目的一部分。)

这是一个示例生成文件:

CXX=g++-4.0
CXXFLAGS=-arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4

helloworld: helloworld.o
$(CXX) $^ -o $@ $(CXXFLAGS)

使用 helloworld.cpp:
#include <stdio.h>

int main(void) {
printf("hello world \n");
return 0;
}

这是它的输出:
$ make
g++-4.0 -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -c -o helloworld.o helloworld.cpp
g++-4.0 helloworld.o -o helloworld -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4
ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/lib/crt1.o, in section __TEXT,__text reloc 1: sectionForNum(4) section number not for any section for architecture ppc
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/NK/NK2TdejFFfOupEszIr4fG++++TM/-Tmp-//ccryAbut.out (No such file or directory)
make: *** [helloworld] Error 1

顺便说一句,这个确切的 makefile 在 XCode 3 系统上运行良好。

最佳答案

由于您使用的是 命令行 gcc (Unix 开发包),不是 /Developer 的 GCC或 /Xcode3将被使用,但 /usr 之一,我没有触及我的原始描述。要恢复命令行 GCC 的 PPC 支持,您至少必须执行 jas 指出的操作 in this answer .或者你改变你的 Makefile 以使用来自 /Developer 的 gcc相反(在执行这些命令之前,我在当前工作目录中创建了您的 helloworld.cpp):

$ /Developer/usr/bin/g++-4.0 -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4   -c -o helloworld.o helloworld.cpp
$ /Developer/usr/bin/g++-4.0 helloworld.o -o helloworld -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4
ld: warning: object file compiled with -mlong-branch which is no longer needed. To remove this warning, recompile without -mlong-branch: /Developer/SDKs/MacOSX10.4u.sdk/usr/lib/crt1.o
ld: warning: object file compiled with -mlong-branch which is no longer needed. To remove this warning, recompile without -mlong-branch: /Xcode3/usr/bin/../lib/gcc/powerpc-apple-darwin10/4.0.1/crt3.o
$ ./helloworld
hello world

您可以放心地忽略这两个警告。不幸的是 GCC 4.0 不支持 -mno-long-branch ,这对于避免长分支是必要的。

关于xcode - 升级到 XCode 4 后无法链接 ppc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5409860/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com