diff options
author | EuAndreh <eu@euandre.org> | 2024-07-03 16:09:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-07-03 16:09:21 -0300 |
commit | ee1f60cd0b966bb1672d94cf243991073c89b28d (patch) | |
tree | 6b07e1d8d6e95b42121e592e34f7d9305afb776b /etc/sh | |
parent | mv bin/e bin/ee (diff) | |
download | dotfiles-ee1f60cd0b966bb1672d94cf243991073c89b28d.tar.gz dotfiles-ee1f60cd0b966bb1672d94cf243991073c89b28d.tar.xz |
etc/sh/rc: Remove -fsanitize=undefined fro $CFLAGS and $LDFLAGS
Diffstat (limited to 'etc/sh')
-rw-r--r-- | etc/sh/rc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -142,12 +142,11 @@ export CCFLAGS=' -Wshadow -Wundef -Wdouble-promotion - -fsanitize=undefined -Werror -Wvla ' CCFLAGS="$(printf '%s\n' "$CCFLAGS" | grep . | tr -d '\t' | tr '\n' ' ')" -LLDFLAGS='-fsanitize=undefined' +export LLDFLAGS='' export LDFLAGS="$LLDFLAGS -static" export CFLAGS="$CCFLAGS -g" export LEIN_SUPPRESS_USER_LEVEL_REPO_WARNINGS=1 |