`g++ -c -o concaveman.o concaveman.cpp` `gcc -shared -o concaveman.so concaveman.o` Gives a bunch of errors Are there any other ways to build to .so library? I'm trying to build for Python wrappers.
g++ -c -o concaveman.o concaveman.cppgcc -shared -o concaveman.so concaveman.oGives a bunch of errors
Are there any other ways to build to .so library?
I'm trying to build for Python wrappers.