Skip to content

Commit

Permalink
fix static flag in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
shygoo committed Nov 9, 2020
1 parent f60f66f commit 172589d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CC=g++
CFLAGS=-static -I./include -I./build -O3 -s -Wall -Wno-unused-function -Wno-strict-aliasing -Wno-unused-result
CFLAGS=-I./include -I./build -O3 -s -Wall -Wno-unused-function -Wno-strict-aliasing -Wno-unused-result

LD=g++
LDFLAGS=-s -Wl,--gc-sections,-lm,-lpthread
LDFLAGS=-static -s -Wl,--gc-sections,-lm,-lpthread

SRC_DIR=src
OBJ_DIR=obj
Expand Down

0 comments on commit 172589d

Please sign in to comment.