Files
libraries/compiling.md
2025-09-19 17:47:22 +10:00

155 B

Compiling External Libraries

On Linux:

g++ -shared -fPIC -o filename.so filename.cpp

On macOS:

g++ -shared -fPIC -o filename.dylib filename.cpp