comparison make/linux/makefiles/saproc.make @ 1681:126ea7725993

6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
author bobv
date Tue, 03 Aug 2010 08:13:38 -0400
parents c18cbe5936b8
children f95d63e2154a
comparison
equal deleted inserted replaced
1680:a64438a2b7e8 1681:126ea7725993
51 ifeq ($(DEBUG_BINARIES), true) 51 ifeq ($(DEBUG_BINARIES), true)
52 SA_DEBUG_CFLAGS = -g 52 SA_DEBUG_CFLAGS = -g
53 endif 53 endif
54 54
55 # if $(AGENT_DIR) does not exist, we don't build SA 55 # if $(AGENT_DIR) does not exist, we don't build SA
56 # also, we don't build SA on Itanium or zero. 56 # also, we don't build SA on Itanium, PPC, ARM or zero.
57 57
58 checkAndBuildSA: 58 checkAndBuildSA:
59 $(QUIETLY) if [ -d $(AGENT_DIR) -a "$(SRCARCH)" != "ia64" -a "$(SRCARCH)" != "zero" ] ; then \ 59 $(QUIETLY) if [ -d $(AGENT_DIR) -a "$(SRCARCH)" != "ia64" -a "$(SRCARCH)" != "arm" -a "$(SRCARCH)" != "ppc" -a "$(SRCARCH)" != "zero" ] ; then \
60 $(MAKE) -f vm.make $(LIBSAPROC); \ 60 $(MAKE) -f vm.make $(LIBSAPROC); \
61 fi 61 fi
62 62
63 SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE)) $(LDFLAGS_HASH_STYLE) 63 SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE)) $(LDFLAGS_HASH_STYLE)
64 64