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
Post a Comment