bsp/pc386: Remove unused RTEMS_CPU_MODEL

This patch is a part of the BSP source reorganization.

Update #3285.
This commit is contained in:
Sebastian Huber
2018-03-26 09:04:43 +02:00
parent b1b7390a4a
commit 96400050ed
6 changed files with 0 additions and 13 deletions

View File

@@ -5,9 +5,6 @@
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=i386
ifeq ($(RTEMS_CPU_MODEL),)
RTEMS_CPU_MODEL=i386_fp
endif
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.

View File

@@ -2,8 +2,6 @@
# Configuration file for a PC using an i486DX Class CPU
#
RTEMS_CPU_MODEL=i486dx
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -mtune=i486

View File

@@ -2,8 +2,6 @@
# Configuration file for a PC using a Pentium Class CPU
#
RTEMS_CPU_MODEL=pentium
# This configuration is useful for SMP testing on Qemu
CPU_CFLAGS = -mtune=pentium -march=pentium -msse2

View File

@@ -2,8 +2,6 @@
# Configuration file for a PC using a Pentium Class CPU
#
RTEMS_CPU_MODEL=pentium
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -mtune=pentium -march=pentium

View File

@@ -2,8 +2,6 @@
# Configuration file for a PC using a PentiumPro Class CPU
#
RTEMS_CPU_MODEL=pentiumpro
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -mtune=pentiumpro -march=pentium

View File

@@ -2,8 +2,6 @@
# Configuration file for a PC using a Pentium Class CPU
#
RTEMS_CPU_MODEL=pentium
# Note: We give the -mtune=pentium option here only so that at least the
# variant optimized for pentium (w/o using any pentium-specific
# features) is used (assuming you use the vanilla RTEMS multilibs).