31 lines
1.1 KiB
Bash
Executable File
31 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# If any command errors, stop the script
|
|
set -e
|
|
|
|
# Store the real CWD
|
|
ME="$(realpath "$0")"
|
|
LOCATION="$(dirname "$ME")"
|
|
CODE_HOME="$(dirname "$LOCATION")"
|
|
|
|
# Find the most reasonable candidate build file
|
|
SOURCE="$1"
|
|
if [ -z "$SOURCE" ]; then
|
|
SOURCE="$(realpath "$CODE_HOME/4coder_default_bindings.cpp")"
|
|
fi
|
|
|
|
# NOTE(yuval): Removed -Wno-writable-strings as it is the same as -Wno-write-strings
|
|
opts="-Wno-write-strings -Wno-null-dereference -Wno-comment -Wno-switch -Wno-missing-declarations -Wno-logical-op-parentheses -g -DOS_MAC=1 -DOS_WINDOWS=0 -DOS_LINUX=0"
|
|
arch=-m64
|
|
|
|
preproc_file=4coder_command_metadata.i
|
|
meta_macros="-DMETA_PASS"
|
|
clang++ -I"$CODE_HOME" $meta_macros $arch $opts $debug -std=c++11 "$SOURCE" -E -o $preproc_file
|
|
clang++ -I"$CODE_HOME" $opts $debug -std=c++11 "$CODE_HOME/4coder_metadata_generator.cpp" -o "$CODE_HOME/metadata_generator"
|
|
"$CODE_HOME/metadata_generator" -R "$CODE_HOME" "$PWD/$preproc_file"
|
|
|
|
clang++ -I"$CODE_HOME" $arch $opts $debug -std=c++11 "$SOURCE" -shared -o custom_4coder.so -fPIC
|
|
|
|
rm "$CODE_HOME/metadata_generator"
|
|
rm $preproc_file
|