Mac Lion无法使用'ar'创建库,'无符号'

时间:2011-11-22 03:25:06

标签: c++ macos symbols ar

我在IO.h和IO.cpp中有C ++源代码,想要创建一个静态库libvcf.a。 然后我使用以下命令:

g++ -c IO.cpp

没问题。

但是,

ar -r libvcf.a IO.o

/usr/bin/ranlib: file: libvcf.a(IO.o) has no symbols

我现在正在使用Mac OSX Lion,下面是g ++ versio:

g++ -v
Using built-in specs.
Target: i686-apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.1~1/src/configure --disable-checking --enable-werror --prefix=/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.1~1/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)

看起来我可以在Linux上使用相同的命令,但不能在Mac上使用。 我也谷歌周围,没有运气。 这里有什么建议?感谢。

1 个答案:

答案 0 :(得分:4)

我认为完整的命令应该是:

ar rcs libvcf.a IO.o

c表示“创建档案”。