[csw-devel] SF.net SVN: gar:[4083] csw/mgar/gar/v2/gar.conf.mk
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Mon Mar 30 21:19:22 CEST 2009
Revision: 4083
http://gar.svn.sourceforge.net/gar/?rev=4083&view=rev
Author: dmichelsen
Date: 2009-03-30 19:19:14 +0000 (Mon, 30 Mar 2009)
Log Message:
-----------
mGAR v2: Fix REQUESTED_ISAS so it really contains all ISAs to be build, including for other GARCHs
Modified Paths:
--------------
csw/mgar/gar/v2/gar.conf.mk
Modified: csw/mgar/gar/v2/gar.conf.mk
===================================================================
--- csw/mgar/gar/v2/gar.conf.mk 2009-03-30 16:35:04 UTC (rev 4082)
+++ csw/mgar/gar/v2/gar.conf.mk 2009-03-30 19:19:14 UTC (rev 4083)
@@ -75,6 +75,7 @@
GARFLAVOR ?= OPT
# Architecture
+GARCHLIST ?= sparc i386
GARCH ?= $(shell uname -p)
GAROSREL ?= $(shell uname -r)
@@ -356,7 +357,7 @@
# NEEDED_ISAS contains all ISAs that must be build for this architecture to make the package
# BUILD_ISAS contains all ISAs that can be built on the current kernel
# Set 'BUILD64 = 1' to build 64 bit versions automatically
-REQUESTED_ISAS ?= $(strip $(ISA_DEFAULT_$(GARCH)) $(EXTRA_BUILD_ISAS) $(EXTRA_BUILD_ISAS_$(GARCH)) $(if $(BUILD64),$(ISA_DEFAULT64_$(GARCH))) )
+REQUESTED_ISAS ?= $(strip $(foreach A,$(GARCHLIST),$(ISA_DEFAULT_$A) $(if $(BUILD64),$(ISA_DEFAULT64_$A)) $(EXTRA_BUILD_ISAS_$A)) $(EXTRA_BUILD_ISAS))
NEEDED_ISAS ?= $(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS))
BUILD_ISAS ?= $(filter $(ISALIST_$(KERNELISA)),$(NEEDED_ISAS))
@@ -638,6 +639,9 @@
@echo " Merge include: $(_MERGE_INCLUDE_FILES)"
@echo " Merge exclude: $(_MERGE_EXCLUDE_FILES)"
@echo
+ @echo " Modulators: $(MODULATORS)"
+ @echo " Modulations: $(MODULATIONS)"
+ @echo
@echo "Requested compiler flags:"
@$(foreach MOD,$(MODULATIONS),$(MAKE) -s _modenv-$(MOD);)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list