summaryrefslogtreecommitdiffstats
path: root/make/custom/bare.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom/bare.cfg')
-rw-r--r--make/custom/bare.cfg9
1 files changed, 8 insertions, 1 deletions
diff --git a/make/custom/bare.cfg b/make/custom/bare.cfg
index 94ccbc7307..ce826ce7ba 100644
--- a/make/custom/bare.cfg
+++ b/make/custom/bare.cfg
@@ -9,7 +9,11 @@ RTEMS_BSP_FAMILY=bare
RTEMS_BSP=bare
-TARGET_ARCH=o-$(RTEMS_BSP_FAMILY)-$(RTEMS_CPU_MODEL)
+RTEMS_CPU_MODEL=$(BARE_CPU_MODEL)
+
+TARGET_ARCH=o-$(RTEMS_BSP_FAMILY)-$(BARE_CPU_MODEL)
+
+CPU_CFLAGS=$(BARE_CPU_CFLAGS)
include $(RTEMS_ROOT)/make/custom/default.cfg
@@ -38,6 +42,9 @@ define make-target-options
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
endef
+# this target has no start file
+START_BASE=
+
# The following are definitions of make-exe which will work using ld as
# is currently required. It is expected that as of gcc 2.8, the end user
# will be able to override parts of the compilers specs and link using gcc.