4coder/buildsuper.sh

12 lines
181 B
Bash
Raw Normal View History

2016-03-07 19:37:48 +00:00
#!/bin/bash
#!/bin/sh
2016-05-07 17:25:45 +00:00
SOURCE="$1"
if [ -z "$SOURCE" ]
then
SOURCE="4coder_default_bindings.cpp"
fi
g++ -Wno-write-strings -std=gnu++0x $SOURCE -shared -o 4coder_custom.so -fPIC
2016-03-07 19:37:48 +00:00