Ignore:
Timestamp:
Aug 27, 2016, 10:15:50 PM (9 years ago)
Author:
dmik
Message:

Remove SYM file generation on OS/2.

This doesn't make any practical sense as there is embedded HLL debug
info which is much more verbose than SYM and doesn't require separate
files (it is generated when -g option is passed to gcc).

This commint also removes the dependency on mapsym.exe and wmapsym.cmd.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/hotspot/make/Makefile

    r278 r448  
    291291$(EXPORT_JRE_BIN_DIR)/%.pdb: $(MISC_DIR)/%.pdb
    292292        $(install-file)
    293   else
    294 $(EXPORT_JRE_BIN_DIR)/%.sym: $(MISC_DIR)/%.sym
    295         $(install-file)
    296293  endif
    297294$(EXPORT_JRE_BIN_DIR)/%.map: $(MISC_DIR)/%.map
     
    304301$(EXPORT_CLIENT_DIR)/%.pdb:  $(C1_DIR)/%.pdb
    305302        $(install-file)
    306   else
    307 $(EXPORT_CLIENT_DIR)/%.sym:  $(C1_DIR)/%.sym
    308         $(install-file)
    309303  endif
    310304$(EXPORT_CLIENT_DIR)/%.map:  $(C1_DIR)/%.map
     
    317311$(EXPORT_SERVER_DIR)/%.pdb:  $(C2_DIR)/%.pdb
    318312        $(install-file)
    319   else
    320 $(EXPORT_SERVER_DIR)/%.sym:  $(C2_DIR)/%.sym
    321         $(install-file)
    322313  endif
    323314$(EXPORT_SERVER_DIR)/%.map:  $(C2_DIR)/%.map
     
    329320  ifneq ($(OSNAME),os2)
    330321$(EXPORT_KERNEL_DIR)/%.pdb:  $(KERNEL_DIR)/%.pdb
    331         $(install-file)
    332   else
    333 $(EXPORT_KERNEL_DIR)/%.sym:  $(KERNEL_DIR)/%.sym
    334322        $(install-file)
    335323  endif
Note: See TracChangeset for help on using the changeset viewer.