summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64/amd64/config/amd64.cfg
blob: fe19a9ee557501c34fb6cc89b647c30f0e173548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include $(RTEMS_ROOT)/make/custom/default.cfg

RTEMS_CPU = x86_64

CFLAGS_OPTIMIZE_V += -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections

# We can't have the red zone because interrupts will not respect that area.
CPU_CFLAGS  = -mno-red-zone
# This flag tells GCC to not assume values will fit in 32-bit registers. This
# way we can avoid linker-time relocation errors spawning from values being
# larger than their optimized container sizes.
CPU_CFLAGS += -mcmodel=large

LDFLAGS = -Wl,--gc-sections