https://hal.archives-ouvertes.fr/hal-03445804
Raw File
Makefile.config.linux
# C Compiler
CC=gcc

# archiver
AR=ar

# C Compiler flags
# Define UNSAFE to remove all assertions/checks performed by SCEDA
CFLAGS=-Wall -O3 -fno-strict-aliasing -Werror -Wno-unused-function 

# Doxygen command
DOXYGEN=doxygen

# Target installation prefix
TARGET?=./build.linux
back to top