fix stack protector issues

This commit is contained in:
nora 2023-10-01 15:34:50 +02:00
parent 2f0191768f
commit 08938636d4
2 changed files with 2 additions and 2 deletions

View file

@ -2,6 +2,6 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
args=("-nodefaultlibs" "-nostdlib" "-L${SCRIPT_DIR}/target/debug" "-lrawc")
args=("-fno-stack-protector" "-nodefaultlibs" "-nostdlib" "-L${SCRIPT_DIR}/target/debug" "-lrawc")
exec clang "$@" "${args[@]}"