diff options
author | WormHeamer | 2025-03-08 17:41:48 -0500 |
---|---|---|
committer | WormHeamer | 2025-03-08 17:41:48 -0500 |
commit | eba555fed78e93743ab9381fb72d6bd751b936e4 (patch) | |
tree | e27466cb3bafb8c7bb8414a13ef12baaa1a64991 | |
parent | ab08184eb0c4e4c4ccc9b0595806c3e3185dbc4f (diff) |
remove -flto flag
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 7f18002..6de1607 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ EXE = wdoc RUNARGS = CFLAGS = -std=c17 -Wall -Wextra -Wpedantic -Os ${CFLAGS_${DEBUG}} -LDFLAGS = -flto ${LDFLAGS_${DEBUG}} +LDFLAGS = ${LDFLAGS_${DEBUG}} PREFIX = ${HOME}/.local LDLIBS = |