Fixed so hppa1.1 compiles with only problems in simhppa BSP.

This commit is contained in:
Joel Sherrill
2000-06-12 20:27:50 +00:00
parent 41ab696625
commit edc61d488b
3 changed files with 16 additions and 6 deletions

View File

@@ -4,15 +4,25 @@
AUTOMAKE_OPTIONS = foreign 1.4
H_FILES = cpu.h cpu_asm.h hppa.h hppatypes.h
noinst_HEADERS = $(H_FILES)
GENOFFSETS = $(PROJECT_ROOT)/tools/cpu/hppa1.1/genoffsets
GENERIC_H_FILES = offsets.h
STATIC_H_FILES = cpu.h cpu_asm.h hppa.h hppatypes.h
noinst_HEADERS = $(STATIC_H_FILES)
#
# (OPTIONAL) Add local stuff here using +=
#
offsets.h: $(GENOFFSETS) cpu.h
$(RM) $@
$(GENOFFSETS) > $@
CLEANFILES = offsets.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
$(H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
$(STATIC_H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) \
$(GENERIC_H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
$(PROJECT_INCLUDE)/rtems/score:
$(mkinstalldirs) $@

View File

@@ -30,7 +30,7 @@ extern "C" {
*/
/* #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 */
/* #define CONFIGURE_INTERRUPT_STACK_MEMORY (TBD * 1024) */
#define CONFIGURE_INTERRUPT_STACK_MEMORY (4 * 1024)
/*
* Define the time limits for RTEMS Test Suite test durations.

View File

@@ -13,9 +13,9 @@ $(PROJECT_INCLUDE)/hppa1.1:
$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/hppa1.1/%.h: %.h
$(INSTALL_DATA) $@ $<
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/hppa1.1 \
PREINSTALL_FILES += $(PROJECT_INCLUDE)/hppa1.1 \
$(H_FILES:%.h=$(PROJECT_INCLUDE)/hppa1.1/%.h)
all-local: $(TMPINSTALL_FILES)