jdk/make/common/Library.gmk
author ohair
Wed, 30 Jul 2008 19:40:57 -0700
changeset 917 75261da60fff
parent 2 90ce3da70b43
child 1247 b4c26443dee5
permissions -rw-r--r--
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2 Reviewed-by: tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 1995-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Generic makefile for building shared libraries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# WARNING: This file is shared with other workspaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#          So when it includes other files, it must use JDK_TOPDIR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
include $(JDK_TOPDIR)/make/common/Classes.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# It is important to define these *after* including Classes.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
# in order to override the values defined inthat makefile.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
ifeq ($(LIBRARY), fdlibm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
ifeq ($(PLATFORM),windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
ACTUAL_LIBRARY_NAME = $(LIB_PREFIX)$(LIBRARY).$(FDDLIBM_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
ACTUAL_LIBRARY_DIR = $(OBJDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
else # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
ACTUAL_LIBRARY_NAME = $(LIB_PREFIX)$(LIBRARY).$(ARCH).$(FDDLIBM_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
ACTUAL_LIBRARY_DIR = $(OBJDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
endif #PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
else # LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
ACTUAL_LIBRARY_NAME = $(LIB_PREFIX)$(LIBRARY).$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
ACTUAL_LIBRARY_DIR = $(LIB_LOCATION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
ACTUAL_LIBRARY = $(ACTUAL_LIBRARY_DIR)/$(ACTUAL_LIBRARY_NAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
library:: $(ACTUAL_LIBRARY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
FILES_o   = $(patsubst %.c,   %.$(OBJECT_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_c))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
FILES_o  += $(patsubst %.s,   %.$(OBJECT_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_s))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
FILES_o  += $(patsubst %.cpp, %.$(OBJECT_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_cpp))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
ifeq ($(INCREMENTAL_BUILD),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
FILES_d   = $(patsubst %.c,   %.$(DEPEND_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_c))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
FILES_d  += $(patsubst %.cpp, %.$(DEPEND_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_cpp))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
endif # INCREMENTAL_BUILD
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
ifeq ($(PLATFORM),solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
# List of all lint files, one for each .c file (only for C)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
FILES_ln   = $(patsubst %.c,   %.$(LINT_SUFFIX), $(addprefix $(OBJDIR)/, $(notdir $(FILES_c))))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
# C++ libraries must be linked with CC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
ifdef CPLUSPLUSLIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
LINKER=$(LINK.cc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
LINKER=$(LINK.c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
# FIXUP: unpack needs the zip .o files. So we must build zip?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
#     or fix unpack makefile so it uses Program.gmk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
ifneq ($(IMPORT_NATIVE_BINARIES),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  COMPILE_IT=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
  ifeq ($(LIBRARY),zip)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    COMPILE_IT=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    COMPILE_IT=false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
# If a Makefile has specified a pre-compiled closed src lib, just copy it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
ifdef USE_BINARY_PLUG_LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
  COMPILE_IT=false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
# We either need to import (copy) libraries in, or build them
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
ifeq ($(COMPILE_IT),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
$(ACTUAL_LIBRARY):: $(INIT) $(TEMPDIR) $(LIBDIR) $(BINDIR) $(EXTDIR) classheaders
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
# COMPILE_APPROACH: Different approaches to compile up the native object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
#   files as quickly as possible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
#   The setting of parallel works best on Unix, batch on Windows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
COMPILE_FILES_o = $(OBJDIR)/.files_compiled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
$(COMPILE_FILES_o): $(FILES_d) $(FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
	@$(ECHO) "$<" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
clean::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
	$(RM) $(COMPILE_FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
# COMPILE_APPROACH=parallel: Will trigger compilations (just compilations) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
#   happen in parallel. Greatly decreases Unix build time, even on single CPU
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
#   machines, more so on multiple CPU machines. Default is 2 compiles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
#   at a time, but can be adjusted with ALT_PARALLEL_COMPILE_JOBS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
#   Note that each .d file will also be dependent on it's .o file, see
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
#   Rules.gmk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
#   Note this does not depend on Rules.gmk to work like batch (below)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
#   and this technique doesn't seem to help Windows build time nor does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
#   it work very well, it's possible the Windows Visual Studio compilers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
#   don't work well in a parallel situation, this needs investigation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
ifeq ($(COMPILE_APPROACH),parallel)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
.PHONY: library_parallel_compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
library_parallel_compile:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
	@$(ECHO) "Begin parallel compiles: $(shell $(PWD))"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
	@$(MAKE) -j $(PARALLEL_COMPILE_JOBS) $(COMPILE_FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
	@$(ECHO) "Done with parallel compiles: $(shell $(PWD))"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
$(ACTUAL_LIBRARY):: library_parallel_compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
# COMPILE_APPROACH=batch: Will trigger compilations (just compilations) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
#   happen in batch mode. Greatly decreases Windows build time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
#   See logic in Rules.gmk for how compiles happen, the $(MAKE) in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
#   library_batch_compile below triggers the actions in Rules.gmk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
#   Note that each .d file will also be dependent on it's .o file, see
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
#   Rules.gmk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
ifeq ($(COMPILE_APPROACH),batch)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
.PHONY: library_batch_compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
library_batch_compile:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
	@$(ECHO) "Begin BATCH compiles: $(shell $(PWD))"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
	$(MAKE) $(COMPILE_FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
	$(MAKE) batch_compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
	@$(ECHO) "Done with BATCH compiles: $(shell $(PWD))"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
	$(MAKE) COMPILE_APPROACH=normal $(COMPILE_FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
$(ACTUAL_LIBRARY):: library_batch_compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
# Library building rules.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
$(LIBRARY).lib:: $(OBJDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
ifeq ($(LIBRARY), fdlibm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
$(ACTUAL_LIBRARY):: $(OBJDIR)/$(LIBRARY).lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
$(OBJDIR)/$(LIBRARY).lib:: $(OBJDIR)/$(LIBRARY).lcf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
	$(LIBEXE) -NODEFAULTLIB:MSVCRT -out:$@ -nologo \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
		@$(OBJDIR)/$(LIBRARY).lcf $(OTHER_LCF) $(LDLIBS_COMMON)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
else # LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
# build it into $(OBJDIR) so that the other generated files get put 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
# there, then copy just the DLL (and MAP file) to the requested directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
$(ACTUAL_LIBRARY):: $(OBJDIR)/$(LIBRARY).lcf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
	@$(MKDIR) -p $(OBJDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
	$(LINK) -dll -out:$(OBJDIR)/$(@F) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
	  -map:$(OBJDIR)/$(LIBRARY).map \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
	  $(LFLAGS) @$(OBJDIR)/$(LIBRARY).lcf \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
	  $(OTHER_LCF) $(JAVALIB) $(LDLIBS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
	$(CP) $(OBJDIR)/$(@F) $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
	$(CP) $(OBJDIR)/$(LIBRARY).map $(@D)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
	$(CP) $(OBJDIR)/$(LIBRARY).pdb $(@D)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
endif # LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
$(OBJDIR)/$(LIBRARY).lcf: $(OBJDIR)/$(LIBRARY).res $(COMPILE_FILES_o) $(FILES_m)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
	@$(MKDIR) -p $(TEMPDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
	@$(ECHO) $(FILES_o) > $@ 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
ifndef LOCAL_RESOURCE_FILE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
	@$(ECHO) $(OBJDIR)/$(LIBRARY).res >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
	@$(ECHO) Created $@ 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
# J2SE name required here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
RC_FLAGS += /D "J2SE_FNAME=$(LIBRARY).dll" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            /D "J2SE_INTERNAL_NAME=$(LIBRARY)" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            /D "J2SE_FTYPE=0x2L"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
$(OBJDIR)/$(LIBRARY).res: $(VERSIONINFO_RESOURCE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
ifndef LOCAL_RESOURCE_FILE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
	$(RC) $(RC_FLAGS) $(CC_OBJECT_OUTPUT_FLAG)$(@) $(VERSIONINFO_RESOURCE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
# Install a .lib file if required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
ifeq ($(INSTALL_DOT_LIB), true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
$(ACTUAL_LIBRARY):: $(LIBDIR)/$(LIBRARY).lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
clean:: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
	-$(RM) $(LIBDIR)/$(LIBRARY).lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
$(LIBDIR)/$(LIBRARY).lib:: $(OBJDIR)/$(LIBRARY).lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
$(LIBDIR)/$(LIBRARY).dll:: $(OBJDIR)/$(LIBRARY).dll
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
endif # INSTALL_DOT_LIB
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
else # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
# On Solaris, use mcs to write the version into the comment section of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
# the shared library.  On other platforms set this to false at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
# make command line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
$(ACTUAL_LIBRARY):: $(COMPILE_FILES_o) $(FILES_m) $(FILES_reorder)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
	@$(prep-target)
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 2
diff changeset
   241
	@$(ECHO) "STATS: LIBRARY=$(LIBRARY), PRODUCT=$(PRODUCT), OPTIMIZATION_LEVEL=$(OPTIMIZATION_LEVEL)"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
	@$(ECHO) "Rebuilding $@ because of $?"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
ifeq ($(LIBRARY), fdlibm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
	$(AR) -r $@ $(FILES_o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
else # LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
	$(LINKER) $(SHARED_LIBRARY_FLAG) -o $@ $(FILES_o) $(LDLIBS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
ifeq ($(WRITE_LIBVERSION),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
	$(MCS) -d -a "$(FULL_VERSION)" $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
endif # WRITE_LIBVERSION
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
endif # LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
# Cross check all linted files against each other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
ifeq ($(PLATFORM),solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
lint.errors : $(FILES_ln)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
	$(LINT.c) $(FILES_ln) $(LDLIBS) 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
else  # COMPILE_IT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
# OpenJDK rule is first so any lib is preferentially copied from that location.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
ifndef USE_BINARY_PLUG_LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
# In this case we are just copying the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
ifneq ($(LIBRARY), fdlibm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
# Copies in the file from the JDK_IMPORT_PATH area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
$(ACTUAL_LIBRARY_DIR)/%: $(JDK_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
	$(install-import-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
$(ACTUAL_LIBRARY_DIR)/%: $(JDK_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/native_threads/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
	$(install-import-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
$(ACTUAL_LIBRARY_DIR)/%: $(JDK_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/headless/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
	$(install-import-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
$(ACTUAL_LIBRARY_DIR)/%: $(JDK_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/xawt/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	$(install-import-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
else # fdlibm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
$(ACTUAL_LIBRARY_DIR)/%:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
endif # fdlibm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
endif # USE_BINARY_PLUG_LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
endif # COMPILE_IT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
# Class libraries with JNI native methods get a include to the package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
ifdef PACKAGE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
vpath %.c $(PLATFORM_SRC)/native/$(PKGDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
vpath %.c $(SHARE_SRC)/native/$(PKGDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
OTHER_INCLUDES += -I$(SHARE_SRC)/native/common -I$(PLATFORM_SRC)/native/common
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
OTHER_INCLUDES += -I$(SHARE_SRC)/native/$(PKGDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
		  -I$(PLATFORM_SRC)/native/$(PKGDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
# Clean/clobber rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
clean::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
	$(RM) -r $(ACTUAL_LIBRARY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
clobber:: clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
# INCREMENTAL_BUILD means that this workspace will be built over and over
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
#   possibly incrementally. This means tracking the object file dependencies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
#   on include files so that sources get re-compiled when the include files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
#   change. When building from scratch and doing a one time build (like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
#   release engineering or nightly builds) set INCREMENTAL_BUILD=false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
ifeq ($(INCREMENTAL_BUILD),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
# Workaround: gnumake sometimes says files is empty when it shouldn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
#    was:  files := $(foreach file, $(wildcard $(OBJDIR)/*.$(DEPEND_SUFFIX)), $(file))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
files := $(shell $(LS) $(OBJDIR)/*.$(DEPEND_SUFFIX) 2>/dev/null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
# Only include these files if we have any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
ifneq ($(strip $(files)),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
include $(files)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
endif # files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
endif # INCREMENTAL_BUILD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
# Default dependencies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
all: build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
build: library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
debug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
	$(MAKE) VARIANT=DBG build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
fastdebug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
	$(MAKE) VARIANT=DBG FASTDEBUG=true build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
openjdk:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
	$(MAKE) OPENJDK=true build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
.PHONY: all build debug fastdebug
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351