Files
ground_fork/extlibs/compiling.md

10 lines
155 B
Markdown
Raw Normal View History

2025-08-28 11:11:59 +10:00
## Compiling External Libraries
On Linux:
`g++ -shared -fPIC -o filename.so filename.cpp`
On macOS:
`g++ -shared -fPIC -o filename.dylib filename.cpp`