diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-07-02 12:44:34 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-07-02 12:44:34 +0200 |
commit | 12069466ff230ca3b1dafe77c0fb98b8f1d9c658 (patch) | |
tree | 4de1a786966d05be88e6a286c5131946253665d1 /config.mk | |
parent | 30116a4ef2c1d90a3662b2878e54f3da2fc56894 (diff) |
config.mk: remove -lc
Thanks quinq!
POSIX/quinq says:
"In the absence of options that inhibit invocation of the link editor, such as
-c or -E, the c99 utility shall cause the equivalent of a -l c option to be
passed to the link editor after the last pathname operand or -l option, causing
it to be searched after all other object files and libraries are loaded."
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ GITLIB = /usr/local/lib # includes and libs INCS = -I${GITINC} -LIBS = -L${GITLIB} -lgit2 -lc +LIBS = -L${GITLIB} -lgit2 # debug #CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic ${INCS} |