From dc5b9b7daf817d80fff1541e862d9a7e6adc708a Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Sat, 10 Apr 2021 22:42:10 +0200 Subject: [PATCH] Program executable now with the correct mimetype --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index b9c1af3..367bb8b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -42,7 +42,7 @@ $(BINDIR)/%.so: %.c # ---- Main recipe ----------------------------------------------------------- # $(BINDIR)/gem-graph-server: main.c $(DYNLIBS) @echo "Building program to $@" - @$(CC) $(CCOPTS) $(CCFLAGS) -o $@ $< $(LDFLAGS) + @$(CC) $(CCOPTS) -no-pie $(CCFLAGS) -o $@ $< $(LDFLAGS) @echo "Success!" main.c: main.py