xcode - Libtool output "unknown option character -o" error -


so have directory of .o files trying output static library using libtool.

from inside directory containing .o files following, mylibrary.a located in parent directory

$ libtool  -static *.o -output ../mylibrary.a 

however keep getting following error:

unknown option character `o' in: -output 

how resolve this? doing on mac osx terminal

the flag should -o, not -output.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -