comparison make/solaris/makefiles/launcher.make @ 1123:167c2986d91b

6843629: Make current hotspot build part of jdk5 control build Summary: Source changes for older compilers plus makefile changes. Reviewed-by: xlu
author phh
date Wed, 16 Dec 2009 12:54:49 -0500
parents d1605aabd0a1
children fb1a39993f69
comparison
equal deleted inserted replaced
1122:dcb15a6f342d 1123:167c2986d91b
23 # 23 #
24 24
25 # Rules to build gamma launcher, used by vm.make 25 # Rules to build gamma launcher, used by vm.make
26 26
27 # gamma[_g]: launcher 27 # gamma[_g]: launcher
28 LAUNCHER = gamma$(G_SUFFIX) 28 LAUNCHER = gamma
29 LAUNCHER_G = $(LAUNCHER)$(G_SUFFIX)
29 30
30 LAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher 31 LAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
31 LAUNCHERFLAGS = $(ARCHFLAG) \ 32 LAUNCHERFLAGS = $(ARCHFLAG) \
32 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \ 33 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
33 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \ 34 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
86 *) \ 87 *) \
87 echo Linking launcher...; \ 88 echo Linking launcher...; \
88 $(LINK_LAUNCHER/PRE_HOOK) \ 89 $(LINK_LAUNCHER/PRE_HOOK) \
89 $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \ 90 $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \
90 $(LINK_LAUNCHER/POST_HOOK) \ 91 $(LINK_LAUNCHER/POST_HOOK) \
92 [ -f $(LAUNCHER_G) ] || { ln -s $@ $(LAUNCHER_G); }; \
91 ;; \ 93 ;; \
92 esac 94 esac