mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
minor changes to bring build-all.mk update-to-date with prog/build-all.mk
This commit is contained in:
18
build-all.mk
18
build-all.mk
@ -49,7 +49,7 @@ NATIVE = native
|
|||||||
|
|
||||||
GCC = gcc -O
|
GCC = gcc -O
|
||||||
CFLAGS = -g
|
CFLAGS = -g
|
||||||
CXXFLAGS = -g -O
|
CXXFLAGS = -g -O -fexternal-templates
|
||||||
MAKEINFOFLAGS =
|
MAKEINFOFLAGS =
|
||||||
|
|
||||||
log = 1>$(canonhost)-build-log 2>&1
|
log = 1>$(canonhost)-build-log 2>&1
|
||||||
@ -100,7 +100,10 @@ endif
|
|||||||
ifeq ($(canonhost),m68k-lynx-lynxos)
|
ifeq ($(canonhost),m68k-lynx-lynxos)
|
||||||
canonhost := m68k-lynx
|
canonhost := m68k-lynx
|
||||||
endif
|
endif
|
||||||
ifeq ($(canonhost),rs6000-lynx-lynxos2.2.2)
|
ifeq ($(canonhost),sparc-lynx-lynxos)
|
||||||
|
canonhost := sparc-lynx
|
||||||
|
endif
|
||||||
|
ifeq ($(canonhost),rs6000-lynx-lynxos)
|
||||||
canonhost := rs6000-lynx
|
canonhost := rs6000-lynx
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -268,6 +271,13 @@ all-cygnus:
|
|||||||
@echo build started at `date`
|
@echo build started at `date`
|
||||||
[ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
|
[ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
|
||||||
-rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
|
-rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
|
||||||
|
#
|
||||||
|
# The following line to be used during regular progressive builds
|
||||||
|
# to help developers test, but should be commented out for final
|
||||||
|
# progressive build.
|
||||||
|
#
|
||||||
|
# -rm -f $(ROOTING)/progressive-beta && ln -s $(RELEASE_TAG) $(ROOTING)/progres
|
||||||
|
sive-beta
|
||||||
@for i in $(TARGETS) ; do \
|
@for i in $(TARGETS) ; do \
|
||||||
if [ "$$i" = "native" ] ; then \
|
if [ "$$i" = "native" ] ; then \
|
||||||
if [ ! -f $(canonhost)-stamp-3stage-done ] ; then \
|
if [ ! -f $(canonhost)-stamp-3stage-done ] ; then \
|
||||||
@ -295,8 +305,8 @@ all-cygnus:
|
|||||||
native:
|
native:
|
||||||
@echo build started at `date`
|
@echo build started at `date`
|
||||||
[ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
|
[ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
|
||||||
rm -f $(ROOTING)/$(RELEASE_TAG)
|
-rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
|
||||||
ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
|
# -rm -f $(ROOTING)/progressive-beta && ln -s $(RELEASE_TAG) $(ROOTING)/progressive-beta
|
||||||
$(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log)
|
$(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log)
|
||||||
@echo done at `date`
|
@echo done at `date`
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user