Created
February 22, 2009 02:43
-
-
Save frsyuki/68310 to your computer and use it in GitHub Desktop.
This file contains 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
gcc -fPIC -c clib.c -o clib.o | |
g++ -fPIC -c cxxlib.cc -o cxxlib.o | |
gcc -fPIC -shared clib.o cxxlib.o -o libtest.so | |
echo "g++ prog.cc -L. -ltest -o prog_cxx" | |
g++ prog.cc -L. -ltest -o prog_cxx | |
echo "gcc prog.c -L. -ltest -o prog_c" | |
gcc prog.c -L. -ltest -o prog_c | |
LD_LIBRARY_PATH=`pwd` ./prog_cxx | |
LD_LIBRARY_PATH=`pwd` ./prog_c | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment