corba/make/common/shared/Defs-linux.gmk
author tbell
Thu, 30 Jul 2009 23:37:25 -0700
changeset 3359 0589e2ed45b3
parent 4 02bb8761fcce
child 5555 b2b5ed3f0d0d
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     2
# Copyright 2005-2007 Sun Microsystems, Inc.  All Rights Reserved.
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
02bb8761fcce Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
02bb8761fcce Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
02bb8761fcce Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
02bb8761fcce Initial load
duke
parents:
diff changeset
    23
# have any questions.
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
# Definitions for Linux.
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
# Default for COMPILER_WARNINGS_FATAL on Linux (C & C++ compiler warnings)
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
ifndef COMPILER_WARNINGS_FATAL
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
  COMPILER_WARNINGS_FATAL=false
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
# Linux should use parallel compilation for best build times
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
ifndef COMPILE_APPROACH
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
  COMPILE_APPROACH = parallel
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
# Indication that we are doing an incremental build.
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
#    This may trigger the creation of make depend files.
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
ifndef INCREMENTAL_BUILD
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
  INCREMENTAL_BUILD = false
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
# FullPath just makes sure it never ends with a / and no duplicates
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
define FullPath
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
$(shell cd $1 2> $(DEV_NULL) && pwd)
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
endef
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
# OptFullPath: Absolute path name of a dir that might not initially exist.
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
define OptFullPath
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
$(shell if [ "$1" != "" -a -d "$1" ]; then (cd $1 && pwd); else echo "$1"; fi)
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
endef
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
# Location on system where jdk installs might be
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
USRJDKINSTANCES_PATH =/opt/java
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
# UNIXCOMMAND_PATH: path to where the most common Unix commands are.
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
#  NOTE: Must end with / so that it could be empty, allowing PATH usage.
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
ifneq "$(origin ALT_UNIXCOMMAND_PATH)" "undefined"
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
  UNIXCOMMAND_PATH :=$(call PrefixPath,$(ALT_UNIXCOMMAND_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
  UNIXCOMMAND_PATH  = /bin/
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
# USRBIN_PATH: path to where the most common Unix commands are.
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
#  NOTE: Must end with / so that it could be empty, allowing PATH usage.
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
ifneq "$(origin ALT_USRBIN_PATH)" "undefined"
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
  USRBIN_PATH :=$(call PrefixPath,$(ALT_USRBIN_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
  USRBIN_PATH  = /usr/bin/
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
# UNIXCCS_PATH: path to where the Solaris ported UNIX commands can be found
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
#  NOTE: Must end with / so that it could be empty, allowing PATH usage.
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
ifneq "$(origin ALT_UNIXCCS_PATH)" "undefined"
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
  UNIXCCS_PATH :=$(call PrefixPath,$(ALT_UNIXCCS_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
  UNIXCCS_PATH = /usr/ccs/bin/
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
# SLASH_JAVA: location of all network accessable files
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
ifdef ALT_SLASH_JAVA
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
  SLASH_JAVA  :=$(ALT_SLASH_JAVA)
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
  SLASH_JAVA  := $(call DirExists,/java,/java,/NOT-SET)
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
# JDK_DEVTOOLS_DIR: common path for all the java devtools
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
ifdef ALT_JDK_DEVTOOLS_DIR
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
  JDK_DEVTOOLS_DIR  =$(ALT_JDK_DEVTOOLS_DIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
  JDK_DEVTOOLS_DIR =$(SLASH_JAVA)/devtools
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
# COMPILER_PATH: path to where the compiler and tools are installed.
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
#  NOTE: Must end with / so that it could be empty, allowing PATH usage.
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
ifneq "$(origin ALT_COMPILER_PATH)" "undefined"
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
  COMPILER_PATH :=$(call PrefixPath,$(ALT_COMPILER_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
  COMPILER_PATH  =/usr/bin/
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
# DEVTOOLS_PATH: for other tools required for building (such as zip, etc.)
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
#  NOTE: Must end with / so that it could be empty, allowing PATH usage.
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
ifneq "$(origin ALT_DEVTOOLS_PATH)" "undefined"
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
  DEVTOOLS_PATH :=$(call PrefixPath,$(ALT_DEVTOOLS_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
  DEVTOOLS_PATH =/usr/bin/
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
# _BOOTDIR1: First choice for a Bootstrap JDK, previous released JDK.
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
# _BOOTDIR2: Second choice
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
ifndef ALT_BOOTDIR
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
  _BOOTDIR1  =$(SLASH_JAVA)/re/jdk/$(PREVIOUS_JDK_VERSION)/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
  _BOOTDIR2  =$(USRJDKINSTANCES_PATH)/jdk$(PREVIOUS_JDK_VERSION)
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
# Import JDK images allow for partial builds, components not built are
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
#    imported (or copied from) these import areas when needed.
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
# BUILD_JDK_IMPORT_PATH: location of JDK install trees to import for 
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
#   multiple platforms, e.g. windows-i586, solaris-sparc, linux-586, etc.
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
ifdef ALT_BUILD_JDK_IMPORT_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
  BUILD_JDK_IMPORT_PATH  :=$(call FullPath,$(ALT_BUILD_JDK_IMPORT_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
  BUILD_JDK_IMPORT_PATH   = $(PROMOTED_BUILD_BINARIES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
BUILD_JDK_IMPORT_PATH:=$(call AltCheckValue,BUILD_JDK_IMPORT_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
# JDK_IMPORT_PATH: location of JDK install tree (this version) to import
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
ifdef ALT_JDK_IMPORT_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
  JDK_IMPORT_PATH  :=$(call FullPath,$(ALT_JDK_IMPORT_PATH))
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
  JDK_IMPORT_PATH   = $(BUILD_JDK_IMPORT_PATH)/$(PLATFORM)-$(ARCH)$(_JDK_IMPORT_VARIANT)
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
JDK_IMPORT_PATH:=$(call AltCheckValue,JDK_IMPORT_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
   139