2016-03-08 19:10:51 +01:00
|
|
|
# Uncomment the following line to use OpenMP 2.0 features
|
|
|
|
OMPFLAG = -DOMPVER2
|
|
|
|
# Uncomment the following line to use OpenMP 3.0 features
|
|
|
|
#OMPFLAG = -DOMPVER2 -DOMPVER3
|
|
|
|
|
|
|
|
CC = $(CC_FOR_TARGET)
|
|
|
|
CFLAGS = -fopenmp $(CFLAGS_FOR_TARGET) -lm
|
|
|
|
LDFLAGS = -fopenmp $(LDFLAGS_FOR_TARGET) -lm
|
|
|
|
CPP = $(CPP_FOR_TARGET)
|
|
|
|
LIBS =
|
|
|
|
|
|
|
|
override STRIP_DEBUG = --strip-debug #--strip-unneeded
|
|
|
|
KEEP_DEBUG = --only-keep-debug
|
2016-03-24 09:23:13 +01:00
|
|
|
OBJCOPY_FLAGS = -j .mboot -j .ktext -j .kdata -j .kbss -j .tbss -j .tdata -j .fini -j .init -j .ctors -j .dtors -j .text -j .data -j .rodata -j .bss -j .percore -j .eh_frame -j .jcr -j .got.plt -j .preinit_array -j .init_array -j .fini_array -j .gcc_except_table -O binary
|