hotspot/make/windows/makefiles/debug.make
changeset 37437 f824aabc7af8
parent 34319 9d6dd3c5ca23
equal deleted inserted replaced
37436:1d902bc02bc2 37437:f824aabc7af8
    46 HS_BUILD_ID=$(HOTSPOT_VERSION_STRING)-debug
    46 HS_BUILD_ID=$(HOTSPOT_VERSION_STRING)-debug
    47 
    47 
    48 # Force resources to be rebuilt every time
    48 # Force resources to be rebuilt every time
    49 $(Res_Files): FORCE
    49 $(Res_Files): FORCE
    50 
    50 
       
    51 # NOTE: Changes in this file was just to give a proper command line when linking
       
    52 # for use when developing the new build, and should not be integrated.
    51 $(AOUT): $(Res_Files) $(Obj_Files) vm.def
    53 $(AOUT): $(Res_Files) $(Obj_Files) vm.def
    52 	$(LD) @<<
    54 	$(LD) $(LD_FLAGS) /out:$@ /implib:$*.lib /def:vm.def $(Obj_Files) $(Res_Files)
    53   $(LD_FLAGS) /out:$@ /implib:$*.lib /def:vm.def $(Obj_Files) $(Res_Files)
       
    54 <<
       
    55 !if "$(MT)" != ""
    55 !if "$(MT)" != ""
    56 # The previous link command created a .manifest file that we want to
    56 # The previous link command created a .manifest file that we want to
    57 # insert into the linked artifact so we do not need to track it
    57 # insert into the linked artifact so we do not need to track it
    58 # separately.  Use ";#2" for .dll and ";#1" for .exe:
    58 # separately.  Use ";#2" for .dll and ";#1" for .exe:
    59 	$(MT) /manifest $@.manifest /outputresource:$@;#2
    59 	$(MT) /manifest $@.manifest /outputresource:$@;#2