2013-09-17 Joey Ye <joey.ye@arm.com>
* libnosys/Makefile.in: Install nosys.specs. * libnosys/nosys.specs: New specs.
This commit is contained in:
parent
9a2f0cff8f
commit
5bff53b4f7
|
@ -1,3 +1,8 @@
|
|||
2013-09-17 Joey Ye <joey.ye@arm.com>
|
||||
|
||||
* libnosys/Makefile.in: Install nosys.specs.
|
||||
* libnosys/nosys.specs: New specs.
|
||||
|
||||
2013-08-12 Yufeng Zhang <Yufeng.Zhang@arm.com>
|
||||
|
||||
* aarch64/crt0.S: Remove 'start'.
|
||||
|
|
|
@ -77,6 +77,7 @@ GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \
|
|||
then echo -L${objroot}/../gcc ; fi`
|
||||
|
||||
OUTPUTS = libnosys.a
|
||||
SPECS = ${srcdir}/nosys.specs
|
||||
|
||||
# Host specific makefile fragment comes in here.
|
||||
@host_makefile_frag@
|
||||
|
@ -101,7 +102,7 @@ distclean maintainer-clean realclean: clean
|
|||
|
||||
.PHONY: install info install-info clean-info
|
||||
install:
|
||||
@for outputs in ${OUTPUTS}; do\
|
||||
@for outputs in ${OUTPUTS} ${SPECS}; do\
|
||||
mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
|
||||
$(INSTALL_DATA) $${outputs} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
|
||||
done
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
%rename lib libc
|
||||
|
||||
*libgloss:
|
||||
-lnosys
|
||||
|
||||
*lib:
|
||||
--start-group %(libc) %(libgloss) --end-group
|
||||
|
Loading…
Reference in New Issue