* configure.in: Remove config_libnosys=false

* configure: Regenerated.
	* msp430/nosyscalls.S: Rename to ciosyscalls.S
	* msp430/Makefile.in: Change LIBNOSYS to LIB_CIO.
This commit is contained in:
Nick Clifton 2014-09-22 15:26:46 +00:00
parent 99eb60455b
commit c30356443e
6 changed files with 14 additions and 9 deletions

View File

@ -1,3 +1,10 @@
2014-09-22 Peter A. Bigot <pab@pabigot.com>
* configure.in: Remove config_libnosys=false
* configure: Regenerated.
* msp430/nosyscalls.S: Rename to ciosyscalls.S
* msp430/Makefile.in: Change LIBNOSYS to LIB_CIO.
2014-08-14 Bin Cheng <bin.cheng@arm.com>
* arm/elf-nano.specs: New file.

View File

@ -78,7 +78,7 @@ BOARD_LDFLAGS =
BOARD_BSP = libbfinbsp.a
BOARD_CRT0S = basiccrt.o basiccrts.o
BOARD_CRT0S += basiccrt561.o basiccrt561s.o basiccrt561b.o
BOARD_CRT0S += basiccrt60x.o basiccrt60xs.o basiccrt60xc1.o
# BOARD_CRT0S += basiccrt60x.o basiccrt60xs.o basiccrt60xc1.o
BOARD_OBJS = clear_cache_range.o _exit.o
BOARD_TEST =
BOARD_INSTALL = install-board

1
libgloss/configure vendored
View File

@ -2531,7 +2531,6 @@ case "${target}" in
msp430*-*-elf)
subdirs="$subdirs msp430"
config_libnosys=false
;;
rl78*-*-elf)
subdirs="$subdirs rl78"

View File

@ -137,7 +137,6 @@ case "${target}" in
;;
msp430*-*-elf)
AC_CONFIG_SUBDIRS([msp430])
config_libnosys=false
;;
rl78*-*-elf)
AC_CONFIG_SUBDIRS([rl78])

View File

@ -63,7 +63,7 @@ SCRIPTS += $(srcdir)/intr_vectors.ld
CRT = gcrt0.o crt0.o crt0-minrt.o crtn.o crtn-minrt.o
SIM_BSP = libsim.a
LIBNOSYS = libnosys.a
LIB_CIO = libcio.a
LIB_CRT = libcrt.a
SIM_OBJS = syscalls.o \
@ -71,7 +71,7 @@ SIM_OBJS = syscalls.o \
write.o \
sbrk.o
NOSYS_OBJS = nosyscalls.o \
CIO_OBJS = ciosyscalls.o \
cio.o \
write.o \
unlink.o \
@ -91,7 +91,7 @@ CRT_OBJS = \
@host_makefile_frag@
all: $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT) copy_scripts_to_objdir
all: $(CRT) $(SIM_BSP) $(LIB_CIO) $(LIB_CRT) copy_scripts_to_objdir
crt_%.o : crt0.S
$(CC) -DL$* -Wa,-gdwarf2 -Wa,-I$(srcdir) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $< -o $@
@ -110,7 +110,7 @@ $(SIM_BSP): $(SIM_OBJS)
$(AR) $(ARFLAGS) $@ $?
$(RANLIB) $@
$(LIBNOSYS): $(NOSYS_OBJS)
$(LIB_CIO): $(CIO_OBJS)
$(AR) $(ARFLAGS) $@ $?
$(RANLIB) $@
@ -151,8 +151,8 @@ unlink.o : $(SDEPS)
utime.o : $(SDEPS)
write.o : $(SDEPS)
install: $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT) $(SCRIPTS)
for c in $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT); do \
install: $(CRT) $(SIM_BSP) $(LIB_CIO) $(LIB_CRT) $(SCRIPTS)
for c in $(CRT) $(SIM_BSP) $(LIB_CIO) $(LIB_CRT); do \
$(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
done
for c in $(SCRIPTS); do \