From 4b2ea2ca00eea7feea036b7642c0c1443b8f77a1 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 3 May 2020 20:20:22 -0700 Subject: removed buggy qsort header and implemented myself --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2d6485c..e09510d 100644 --- a/Makefile +++ b/Makefile @@ -11,13 +11,13 @@ LIB_DIR := lib OBJ_DIR := build # C runtime library -CINIT := $(LIB_DIR)/crt/crt1.o $(LIB_DIR)/crt/x86_64/crti.o `gcc --print-file-name=crtbeginT.o` +CINIT := $(LIB_DIR)/crt/crt1.o $(LIB_DIR)/crt/x86_64/crti.o `gcc --print-file-name=crtbeginS.o` CFINI := `gcc --print-file-name=crtendS.o` $(LIB_DIR)/crt/x86_64/crtn.o # Flags, Libraries and Includes CFLAGS := -g -O3 -march=native \ - -ffast-math -fno-strict-aliasing -fwrapv -fms-extensions \ - -Wno-microsoft-anon-tag -Wno-incompatible-function-pointer-types + -ffast-math -fno-strict-aliasing -fwrapv -fms-extensions \ + -Wno-microsoft-anon-tag -Wno-incompatible-function-pointer-types STATIC := -static -nodefaultlibs -nostartfiles AFLAGS := -f elf64 INCS := -isystem $(INC_DIR)/vendor/libc -I $(INC_DIR) -- cgit v1.2.1