Changeset 285


Ignore:
Timestamp:
Apr 22, 2011, 7:00:15 PM (14 years ago)
Author:
dmik
Message:

jvm/make: Preserve .MAP and .SYM of JAVA.DLL from being overwritten by those of JAVA.EXE by saving them with the .dll.map/.dll.sym suffix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/java/java/Makefile

    r278 r285  
    338338        $(install-file)
    339339        $(CHMOD) 444 $@
     340endif
     341
     342#
     343# On OS/2, save .MAP and .SYM files for JAVA.DLL under a different
     344# name since they clash with those from JAVA.EXE built later
     345#
     346ifeq ($(PLATFORM), os2)
     347build: $(BINDIR)/$(LIBRARY).dll.map $(BINDIR)/$(LIBRARY).dll.sym
     348$(BINDIR)/$(LIBRARY).dll.map: $(BINDIR)/$(LIBRARY).map
     349        $(CP) $^ $@
     350$(BINDIR)/$(LIBRARY).dll.sym: $(BINDIR)/$(LIBRARY).sym
     351        $(CP) $^ $@
    340352endif
    341353
Note: See TracChangeset for help on using the changeset viewer.