From a5d15fbccff504461b824b130f9cbc27905264a8 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Mon, 26 Apr 2021 16:05:17 -0700 Subject: fix(bio): buffer copying error --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 13473fa..19db73a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Compiler, Linker, and Assembler -CC := gcc +CC := clang AR := ar AS := nasm PKG := pkg-config @@ -18,7 +18,7 @@ CINIT := $(LIB_DIR)/crt/crt1.o $(LIB_DIR)/crt/x86_64/crti.o `gcc --print-file-na 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 +CFLAGS := -g -march=native -fno-strict-aliasing -fwrapv -fms-extensions -Wno-microsoft-anon-tag STATIC := -nodefaultlibs -nostartfiles -static AFLAGS := -f elf64 INCS := -I $(INC_DIR) -isystem $(INC_DIR)/vendor/libc -- cgit v1.2.1