forked from ground/ground
10 lines
155 B
Markdown
10 lines
155 B
Markdown
## Compiling External Libraries
|
|
|
|
On Linux:
|
|
|
|
`g++ -shared -fPIC -o filename.so filename.cpp`
|
|
|
|
On macOS:
|
|
|
|
`g++ -shared -fPIC -o filename.dylib filename.cpp`
|