Skip to content

Instantly share code, notes, and snippets.

@kyleterry
Created January 26, 2014 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyleterry/8640517 to your computer and use it in GitHub Desktop.
Save kyleterry/8640517 to your computer and use it in GitHub Desktop.
$ 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