Back to home page

LXR

 
 

    


Warning, /bsps/x86_64/amd64/config/amd64.cfg is written in an unsupported language. File is not indexed.

0001 include $(RTEMS_ROOT)/make/custom/default.cfg
0002 
0003 RTEMS_CPU = x86_64
0004 
0005 CFLAGS_OPTIMIZE_V += -O2 -g
0006 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0007 
0008 # We can't have the red zone because interrupts will not respect that area.
0009 CPU_CFLAGS  = -mno-red-zone
0010 # This flag tells GCC to not assume values will fit in 32-bit registers. This
0011 # way we can avoid linker-time relocation errors spawning from values being
0012 # larger than their optimized container sizes.
0013 CPU_CFLAGS += -mcmodel=large
0014 
0015 LDFLAGS = -Wl,--gc-sections