bsp/leon3: Use -mcpu=leon3 machine option

Due to GCC configuration changes, the -muser-mode option is superfluous.
This commit is contained in:
Sebastian Huber
2016-02-22 07:04:17 +01:00
parent 5774b75279
commit c466c62d78
2 changed files with 1 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ RTEMS_CPU_MODEL=leon3
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -mcpu=cypress -msoft-float
CPU_CFLAGS = -mcpu=leon3 -msoft-float
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g

View File

@@ -1,3 +1 @@
include $(RTEMS_ROOT)/make/custom/leon3.cfg
CPU_CFLAGS = -mcpu=leon3 -muser-mode -msoft-float