1
我在IO.h和IO.cpp中有C++源代碼,並且希望創建一個靜態庫libvcf.a。 然後我用下面的命令:Mac Lion無法使用'ar','no symbols'創建庫
g++ -c IO.cpp
沒問題。
但是,
ar -r libvcf.a IO.o
/usr/bin/ranlib: file: libvcf.a(IO.o) has no symbols
我現在使用的是Mac OSX獅子,與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上。 我也谷歌周圍,沒有運氣。 這裏有什麼建議嗎?謝謝。
謝謝。這解決了我的問題。 – zhanxw
@zhanxw,既然如此,你應該接受答案。 –
@BrettHale:完成!謝謝。 – zhanxw