diff options
| author | Scott Gasch <[email protected]> | 2018-10-03 20:38:03 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2018-10-03 20:38:03 -0700 |
| commit | 98e8d2445213432c65ae48cfa76c863aae1139e7 (patch) | |
| tree | 2b2a48828fdb0fa5f29698b7c9cd31427728203f /src/GNUmakefile | |
| parent | 23c44f05a0956ecba918a336b30c6eccf0a996d5 (diff) | |
Update codebase to remove clang warnings (and a couple of legit errors
it found)
Diffstat (limited to 'src/GNUmakefile')
| -rw-r--r-- | src/GNUmakefile | 12 |
1 files changed, 6 insertions, 6 deletions
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 |
