Created
January 26, 2014 22:50
-
-
Save kyleterry/8640517 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ make | |
gcc -std=c99 -Wall -Werror -g3 -c -fPIC -I./include ./src/murmur3.c | |
gcc -std=c99 -Wall -Werror -g3 -c -fPIC -I./include ./src/oleg.c | |
gcc -std=c99 -Wall -Werror -g3 -c -fPIC -I./include ./src/dump.c | |
gcc -std=c99 -Wall -Werror -g3 -shared -Wl,-soname,liboleg.so.1 -o /Users/kyle/src/personal/Project-Oleg/build/lib/liboleg.so.0.1 murmur3.o dump.o oleg.o | |
ld: unknown option: -soname | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make: *** [liboleg] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment