diff options
author | EuAndreh <eu@euandre.org> | 2022-12-18 19:25:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-12-18 19:25:51 -0300 |
commit | 9369feb8c1064b5f8122c41cd87f7a83b2657353 (patch) | |
tree | be27048acecce102df40e761eb878c0d9a931a50 | |
parent | bin/z: Use $TMPDIR: allow z(1) to work on non-writable directories (diff) | |
download | dotfiles-9369feb8c1064b5f8122c41cd87f7a83b2657353.tar.gz dotfiles-9369feb8c1064b5f8122c41cd87f7a83b2657353.tar.xz |
etc/sh/rc: Remove -flto from $CFLAGS and $LDFLAGS
-rw-r--r-- | etc/sh/rc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -76,11 +76,10 @@ N_PROCS=$(($(nproc) * 2 + 1)) GUILE_EFFECTIVE_VERSION="$(guile -c '(display (effective-version))')" export MAKEFLAGS="-j $N_PROCS" export GOPATH="$SRC/go" -export CFLAGS='-D_POSIX_C_SOURCE=200809L -std=c99 -Wall -Wextra -Wpedantic -O0 -g -flto -Werror' +export CFLAGS='-D_POSIX_C_SOURCE=200809L -std=c99 -Wall -Wextra -Wpedantic -O0 -g -Werror' export CC=gcc export AR=gcc-ar export LEX=flex -export LDFLAGS='-flto' export LISP='sbcl --eval' export N_PROCS GUILE_EFFECTIVE_VERSION export LISP_CLI_IMPL=clisp |