Changeset 14
- Timestamp:
- Jun 8, 2010, 7:31:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/common/Defs-os2.gmk
r10 r14 37 37 include $(JDK_MAKE_SHARED_DIR)/Defs.gmk 38 38 39 HPIS = os240 41 39 # LIB_LOCATION, which for OS/2 identifies where .exe files go, may be 42 40 # set by each GNUmakefile. The default is BINDIR. … … 60 58 PLATFORM_INCLUDE = $(INCLUDEDIR)/$(PLATFORM_INCLUDE_NAME) 61 59 62 # C Compiler flag definitions 60 # suffix used for make dependencies files. 61 DEPEND_SUFFIX = dep 62 # The suffix applied to the library name for FDLIBM 63 FDDLIBM_SUFFIX = lib 64 # The suffix applied to scripts (.bat for windows, nothing for unix) 65 SCRIPT_SUFFIX = cmd 66 # CC compiler object code output directive flag value 67 CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required! 68 CC_PROGRAM_OUTPUT_FLAG = -o #trailing blank required! 69 70 # 71 # Default HPI libraries. Build will build only native, unless 72 # overriden at the make command line. This makes it convenient for 73 # people doing, say, a pthreads port -- they can create a posix 74 # directory here, and say "gnumake HPIS=posix" at the top 75 # level. 76 # 77 HPIS = os2 63 78 64 79 # … … 99 114 100 115 # 116 # Misc compiler options 117 # 118 CFLAGS_COMMON = $(GCC_WARNINGS) -march=i486 -mtune=generic 119 CFLAGS_OPT = -s $(POPT) 120 CFLAGS_DBG = -g 121 122 CXXFLAGS_COMMON = -DCC_NOEX $(CFLAGS_COMMON) 123 CXXFLAGS_OPT = $(CFLAGS_OPT) 124 CXXFLAGS_DBG = $(CFLAGS_DBG) 125 126 # 101 127 # Preprocessor macro definitions 102 128 # 129 CPPFLAGS_COMMON = -D$(ARCH) -DARCH='"$(ARCH)"' -DOS2 $(VERSION_DEFINES) 130 CPPFLAGS_OPT = 131 CPPFLAGS_DBG = -DDEBUG 103 132 104 133 # 105 # Output options (use specific filenames to avoid parallel compile errors)134 # Linker options 106 135 # 136 LDFLAGS_COMMON = -Zomf -Zstack 0x2000 -Zlinker "DISABLE 1121" -Zhigh-mem 137 LDFLAGS_OPT = -s 138 LDFLAGS_DBG = 107 139 108 140 #
Note:
See TracChangeset
for help on using the changeset viewer.