diff options
author | EuAndreh <eu@euandre.org> | 2025-06-02 15:15:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-06-02 15:15:26 -0300 |
commit | 97c7a38a46ed4b9167a6bd16c77c63cc7a884c32 (patch) | |
tree | 5e07d6664cb94aed05f8551c6231c151611f183b /etc | |
parent | etc/guix/home.scm: Add "fasm" and "xxd" (diff) | |
download | dotfiles-97c7a38a46ed4b9167a6bd16c77c63cc7a884c32.tar.gz dotfiles-97c7a38a46ed4b9167a6bd16c77c63cc7a884c32.tar.xz |
etc/sh/rc: Swap $CFLAGS and $CCFLAGS
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sh/rc | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -136,17 +136,16 @@ export CCFLAGS=' -Wall -Wextra -Wpedantic - -Wconversion -Wshadow -Wundef - -Wdouble-promotion -Wvla + -Wmissing-prototypes ' CCFLAGS="$(printf '%s\n' "$CCFLAGS" | grep . | tr -d '\t' | tr '\n' ' ')" export LLDFLAGS='' export LDFLAGS="$LLDFLAGS -static" export CFLAGS="$CCFLAGS" -export CCFLAGS="$CCFLAGS -Wmissing-prototypes" +export CCFLAGS="$CCFLAGS -Wconversion -Wdouble-promotion" export YFLAGS='-Wother' export GOCFLAGS="-I $PREFIX/lib/go -N" export GOLDFLAGS="-L $PREFIX/lib/go" |