< prev index next >

make/common/shared/Defs-versions.gmk

Print this page
rev 8219 : 8024900: PPC64: Enable new build on AIX (jdk part)
8024854: PPC64: Basic changes and files to build the class library on AIX
Reviewed-by: alanb, prr, sla, chegar, michaelm, mullan, art, erikj
Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, thomas.stuefe@sap.com


  32 # Windows uses Microsoft compilers by default
  33 ifeq ($(PLATFORM), windows)
  34   override CC_VERSION = msvc
  35 endif
  36 
  37 # Solaris uses Sun Studio compilers by default
  38 ifeq ($(PLATFORM), solaris)
  39   override CC_VERSION = sun
  40 endif
  41 
  42 # Linux uses GNU compilers by default
  43 ifeq ($(PLATFORM), linux)
  44   override CC_VERSION = gcc
  45 endif
  46 
  47 # Mac OS X uses LLVM by default
  48 ifeq ($(PLATFORM), macosx)
  49   override CC_VERSION = llvm
  50 endif
  51 





  52 ##########################################################################
  53 #
  54 # List of JDK official minimum, expected, or required versions:
  55 #
  56 # REQUIRED_ALSA_VERSION
  57 #   Linux only: The ALSA sound library version expected.
  58 #
  59 # REQUIRED_ANT_VER
  60 #   The minimum 'ant' version.
  61 #
  62 # REQUIRED_BOOT_VER
  63 #   The minimum boot jdk version.
  64 #
  65 # REQUIRED_CC_VER
  66 #   The primary C compiler version expected.
  67 #
  68 # REQUIRED_COMPILER_NAME
  69 #   The long descriptive name of the compiler we should use
  70 #
  71 # REQUIRED_COMPILER_VERSION




  32 # Windows uses Microsoft compilers by default
  33 ifeq ($(PLATFORM), windows)
  34   override CC_VERSION = msvc
  35 endif
  36 
  37 # Solaris uses Sun Studio compilers by default
  38 ifeq ($(PLATFORM), solaris)
  39   override CC_VERSION = sun
  40 endif
  41 
  42 # Linux uses GNU compilers by default
  43 ifeq ($(PLATFORM), linux)
  44   override CC_VERSION = gcc
  45 endif
  46 
  47 # Mac OS X uses LLVM by default
  48 ifeq ($(PLATFORM), macosx)
  49   override CC_VERSION = llvm
  50 endif
  51 
  52 # AIX uses xlc_r by default
  53 ifeq ($(PLATFORM), aix)
  54   override CC_VERSION = xlc_r
  55 endif
  56 
  57 ##########################################################################
  58 #
  59 # List of JDK official minimum, expected, or required versions:
  60 #
  61 # REQUIRED_ALSA_VERSION
  62 #   Linux only: The ALSA sound library version expected.
  63 #
  64 # REQUIRED_ANT_VER
  65 #   The minimum 'ant' version.
  66 #
  67 # REQUIRED_BOOT_VER
  68 #   The minimum boot jdk version.
  69 #
  70 # REQUIRED_CC_VER
  71 #   The primary C compiler version expected.
  72 #
  73 # REQUIRED_COMPILER_NAME
  74 #   The long descriptive name of the compiler we should use
  75 #
  76 # REQUIRED_COMPILER_VERSION


< prev index next >