From fc158ab464fd58aec17aa590bc2022f539fefc5a Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 30 May 2020 19:29:42 -0700 Subject: bug: temporary removal of musl lib to isolate malloc bug --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d36cd09..f76ac8c 100644 --- a/Makefile +++ b/Makefile @@ -12,15 +12,15 @@ OBJ_DIR := build TST_DIR := test # C runtime library -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 +# 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 -march=native -fno-strict-aliasing -fwrapv -fms-extensions -STATIC := -static -nodefaultlibs -nostartfiles +# STATIC := -static -nodefaultlibs -nostartfiles AFLAGS := -f elf64 -INCS := -isystem $(INC_DIR)/vendor/libc -I $(INC_DIR) -ELIBS := -L$(LIB_DIR) -lc +INCS := -I $(INC_DIR) #-isystem $(INC_DIR)/vendor/libc +ELIBS := #-L$(LIB_DIR) #-lc # Named generic rules (must be evaluated lazily) COMPILE = @echo "CC "$@;\ -- cgit v1.2.1