From b1a416609a4c9f9a56a0c30752684c61ed4e3792 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Mon, 6 Feb 2017 10:26:11 -0500 Subject: [PATCH] buildsuper fix on linux --- 4ed.cpp | 1 + buildsuper.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/4ed.cpp b/4ed.cpp index 64655324..f12b8ca0 100644 --- a/4ed.cpp +++ b/4ed.cpp @@ -7,6 +7,7 @@ * */ + // TOP // App Structs diff --git a/buildsuper.sh b/buildsuper.sh index 55932836..384b2607 100755 --- a/buildsuper.sh +++ b/buildsuper.sh @@ -11,7 +11,7 @@ if [ -z "$SOURCE" ]; then SOURCE="$CODE_HOME/4coder_default_bindings.cpp" fi -echo "Building 4coder_custom.so from $SOURCE ..." +echo "Building custom_4coders.so from $SOURCE ..." -g++ -I"$CODE_HOME" -Wno-write-strings -std=gnu++0x "$SOURCE" -shared -o 4coder_custom.so -fPIC +g++ -I"$CODE_HOME" -Wno-write-strings -std=gnu++0x "$SOURCE" -shared -o custom_4coder.so -fPIC