- Commit
- 24fcf709ecb39638792ea19499da7e52974d5a2c
- Parent
- 45ca1bc3867a48c75a6c464cf2420e25a8ef74c6
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Merge pull request #181 from michaelsproul/fpic-linker
Add -fPIC to linker options.
My personal build of CMark ✏️
Merge pull request #181 from michaelsproul/fpic-linker
Add -fPIC to linker options.
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | Makefile | 2 | 1 | 1 |
diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ CFLAGS?=-g -O3 -Wall -Wextra -std=c99 -Isrc -Wno-missing-field-initializers -fPIC $(OPTCFLAGS) -LDFLAGS?=-g -O3 -Wall -Werror $(OPTLDFLAGS) +LDFLAGS?=-g -O3 -Wall -Werror -fPIC $(OPTLDFLAGS) SRCDIR?=src DATADIR?=data BENCHINP?=README.md