MD-Bench/include_GCC.mk

16 lines
321 B
Makefile
Raw Normal View History

CC = gcc
2021-03-24 08:43:44 +01:00
LINKER = $(CC)
ANSI_CFLAGS = -ansi
ANSI_CFLAGS += -std=c99
ANSI_CFLAGS += -pedantic
ANSI_CFLAGS += -Wextra
CFLAGS = -O0 -g -std=c99 -fargument-noalias
# CFLAGS = -O3 -march=znver1 -ffast-math -funroll-loops -fopenmp
ASFLAGS = -masm=intel
LFLAGS =
2021-03-24 08:43:44 +01:00
DEFINES = -D_GNU_SOURCE
INCLUDES =
2021-03-24 08:43:44 +01:00
LIBS = -lm