From 98e8d2445213432c65ae48cfa76c863aae1139e7 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 3 Oct 2018 20:38:03 -0700 Subject: Update codebase to remove clang warnings (and a couple of legit errors it found) --- src/GNUmakefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/GNUmakefile') diff --git a/src/GNUmakefile b/src/GNUmakefile index 1ef7fc9..a88b58b 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -19,8 +19,8 @@ # # $Id$ # -CC = gcc -CXX = g++ +CC = clang +CXX = clang++ NASM = yasm ifdef OSX LIBRARIES = -pthread -lc @@ -45,15 +45,15 @@ RM = /bin/rm # ifdef ASM ifdef SIXTYFOUR - PROFILE = -S -fverbose-asm -std=gnu99 -D_X64_ + PROFILE = -S -fverbose-asm -D_X64_ else - PROFILE = -S -fverbose-asm -std=gnu99 -D_X86_ + PROFILE = -S -fverbose-asm -D_X86_ endif else ifdef SIXTYFOUR - PROFILE = -std=gnu99 -D_X64_ + PROFILE = -D_X64_ else - PROFILE = -std=gnu99 -D_X86_ + PROFILE = -D_X86_ endif endif -- cgit v1.3