diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-24 14:56:13 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-24 14:56:13 +0100 |
commit | cafb2eb464347c47c3cee1a766c3b96ccf66e5fa (patch) | |
tree | 7a77609a887f3ca0a87c1bd3458485d5ba73e0f6 /Makefile | |
parent | Ram issues fixed (diff) | |
download | 42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.gz 42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.bz2 42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.xz 42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.zst 42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.zip |
Back to clang
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -153,18 +153,10 @@ endif #==================================================================================================# #------------------------------------------ Compiler ----------------------------------------------# #==================================================================================================# -ifeq (${OS}, Darwin) - DBG = -glldb -else - DBG = -ggdb -endif +DBG = -glldb FSANITIZE = -fsanitize=address #--------------------------------------------------------------------------------------------------# -ifeq (${OS}, Darwin) - CC = clang -else - CC = gcc -endif +CC = clang #--------------------------------------------------------------------------------------------------# CFLAGS = -std=c89 CFLAGS += -Wall |