Fix ordering of LDFLAGS.

This commit is contained in:
Jordan Bancino 2024-01-13 20:31:49 -05:00
parent c7d44866c3
commit 129802fe94
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -61,7 +61,7 @@ for arg in $SCRIPT_ARGS; do
# "Fancy" compilers that support a plethora of additional flags we # "Fancy" compilers that support a plethora of additional flags we
# want to enable if present. # want to enable if present.
CFLAGS="-Wall -Wextra -Werror -pedantic -std=c99 -O3 ${CFLAGS}" CFLAGS="-Wall -Wextra -Werror -pedantic -std=c99 -O3 ${CFLAGS}"
LDFLAGS="-flto -fdata-sections -ffunction-sections -s -Wl,-gc-sections" LDFLAGS="${LDFLAGS} -flto -fdata-sections -ffunction-sections -s -Wl,-gc-sections"
;; ;;
esac esac
;; ;;
@ -101,7 +101,7 @@ for arg in $SCRIPT_ARGS; do
done done
CFLAGS="${CFLAGS} '-DTELODENDRIA_VERSION=\"${VERSION}\"' ${DEBUG}" CFLAGS="${CFLAGS} '-DTELODENDRIA_VERSION=\"${VERSION}\"' ${DEBUG}"
LDFLAGS="${LIBS} ${LDFLAGS}" LDFLAGS="${LDFLAGS} ${LIBS}"
# #
# Makefile generation # Makefile generation