Changeset 250
- Timestamp:
- Jan 27, 2011, 9:28:28 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/jpda/transport/shmem/Makefile
r249 r250 69 69 endif 70 70 71 # Add -export options to explicitly spell exported symbols 72 ifeq ($(PLATFORM), windows) 73 OTHER_LCF += -export:jdwpTransport_OnLoad 74 endif 75 76 ifeq ($(PLATFORM), os2) 77 78 # exports live in .def file 79 DEF_FILE = $(OBJDIR)/$(LIBRARY).def 80 $(DEF_FILE): $(MAKEFILE_LIST) 81 @$(ECHO) "LIBRARY $(LIBRARY) INITINSTANCE TERMINSTANCE" > $@ 82 @$(ECHO) 'EXPORTS \n \ 83 jdwpTransport_OnLoad = "_jdwpTransport_OnLoad@16" \n \ 84 ' >> $@ 85 86 clean:: 87 -$(RM) $(DEF_FILE) 88 89 endif 90 71 91 # 72 92 # Rules. … … 74 94 include $(BUILDDIR)/common/Library.gmk 75 95 76 # Add -export options to explicitly spell exported symbols77 ifeq ($(PLATFORM), windows)78 OTHER_LCF += -export:jdwpTransport_OnLoad79 endif80 81 96 # 82 97 # vpaths for the transport (should not be seen by others)
Note:
See TracChangeset
for help on using the changeset viewer.