Skip to content

Instantly share code, notes, and snippets.

@kyleterry
Created January 26, 2014 23:21
Show Gist options
  • Save kyleterry/8640801 to your computer and use it in GitHub Desktop.
Save kyleterry/8640801 to your computer and use it in GitHub Desktop.
[ OK kyle@imsad:~/src/Project-Oleg ]
$ 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 -lm -shared -Wl,-soname,liboleg.so.1 -o /home/kyle/src/Project-Oleg/build/lib/liboleg.so.0.1 murmur3.o dump.o oleg.o
if ! [ -L /home/kyle/src/Project-Oleg/build/lib/liboleg.so.1 ]; then ln -s /home/kyle/src/Project-Oleg/build/lib/liboleg.so.0.1 /home/kyle/src/Project-Oleg/build/lib/liboleg.so.1; fi
ln: failed to create symbolic link ‘/home/kyle/src/Project-Oleg/build/lib/liboleg.so.1’: File exists
make: *** [liboleg] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment