Changeset 393


Ignore:
Timestamp:
Jul 18, 2012, 12:07:12 AM (13 years ago)
Author:
dmik
Message:

Switch to new version number scheme.

Now it matches the scheme on other platforms: 1.6.0-BB-bNN[-suffix] where
BB is the OpenJDK upstream release/build number, NN is the target platform
serial build number and suffix is an optional suffix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalEnv.tpl.cmd

    r310 r393  
    114114
    115115/**
     116 * Only build the client hotspot JVM
     117 */
     118/*
     119call EnvSet 'BUILD_CLIENT_ONLY', '1'
     120*/
     121
     122/**
    116123 * Here you may put any additional environment variable definitions needed for
    117124 * your local environment or for the OpenJDK make files using the form shown
     
    131138
    132139/**
    133  * JDK build number in format 'bNN'.
     140 * JDK update (marketing) number. Corresponds to the OpenJDK source bundle
     141 * build (release) number. Should be updated with each upstream update.
    134142 */
    135 /*
    136 call EnvSet 'BUILD_NUMBER', 'b00'
    137 */
     143call EnvSet 'JDK_UPDATE_VERSION', '25'
    138144
    139145/**
    140  * Milestone name. Will appear in the version string after the verison number
    141  * and before the build number.
     146 * Build number in format 'bNN[-sometext]'. While it might seem like this one
     147 * should reflect the source bundle build number, in fact it doesn't -- it
     148 * reflects the serial build number for the given platform instead (which allows
     149 * to distinguish several distributed builds of the same upstream release), as
     150 * well as the symbolic build name (optional).
    142151 */
     152call EnvSet 'BUILD_NUMBER', 'b00-test'
     153
    143154/*
    144 call EnvSet 'MILESTONE', 'internal'
    145 */
     155call EnvSet 'COMPILE_APPROACH', 'parallel'
     156call EnvSet 'ALT_PARALLEL_COMPILE_JOBS', '2'
     157call EnvSet 'HOTSPOT_BUILD_JOBS', '2'
     158 */
Note: See TracChangeset for help on using the changeset viewer.