diff options
Diffstat (limited to 'debugger')
-rwxr-xr-x | debugger/make_debugger.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/debugger/make_debugger.sh b/debugger/make_debugger.sh deleted file mode 100755 index 86a7ff9884..0000000000 --- a/debugger/make_debugger.sh +++ /dev/null @@ -1,12 +0,0 @@ -# Used to recompile required skia libraries with static initializers turned -# off. This fixes a bug in which the linux compiler was incorrectly stripping -# required global static methods in an optimization effort. - -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -CWD=$SCRIPT_DIR/../ - -DEFINES="skia_static_initializers=0" -export GYP_DEFINES="$DEFINES" - -make clean -C $CWD -make -C $CWD debugger -j |