Subversion Repositories DevTools

Rev

Rev 4164 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4164 Rev 4814
Line 1... Line 1...
1
###############################################################################
1
###############################################################################
2
# Copyright (c) ERG Transit Systems. 1996-2006
2
# Copyright (c) ERG Transit Systems. 1996-2006
3
#
3
#
4
# File:         PLATFORM/LINUX.cfg
4
# File:         PLATFORM/LINUX.cfg
5
#
5
#
6
# Contents:     SOLARIS Build support
6
# Contents:     LINUX Build support
7
#
7
#
8
#               This package is used during the processing of the build.pl file
8
#               This package is used during the processing of the build.pl file
9
#               Values provided by this package are used to extend the Platform
9
#               Values provided by this package are used to extend the Platform
10
#               information as platforms are being created. This provides a
10
#               information as platforms are being created. This provides a
11
#               powerful set of mechanism to extend the entire JATS toolset
11
#               powerful set of mechanism to extend the entire JATS toolset
12
#
12
#
13
#
13
#
14
# Version   Who      Date       Description
-
 
15
#           DDP      01-Aug-06  Created
-
 
16
###############################################################################
14
###############################################################################
17
 
15
 
18
use strict;
16
use strict;
19
use warnings;
17
use warnings;
20
 
18
 
Line 28... Line 26...
28
#   Hash values are an array of:
26
#   Hash values are an array of:
29
#           Operating System
27
#           Operating System
30
#           architecture
28
#           architecture
31
#
29
#
32
my %valid_machines = (
30
my %valid_machines = (
33
    'linux_i386'             => [ 'LINUX' , 'i386' ],           # Current compiler on 32 bit linux
31
    'linux_i386'             => [ 'LINUX' , 'i386' ],               # Current compiler on 32 bit linux
34
    'linux_x64'              => [ 'LINUX' , 'x64' ],            # Current compiler on 64 bit linux
32
    'linux_x64'              => [ 'LINUX' ,                         # Current compiler on 64 bit linux
-
 
33
                                  'UBUNTU14', 
-
 
34
                                  'UBUNTU14_INSTRUMENT' ],    
35
);
35
);
36
 
36
 
37
#-------------------------------------------------------------------------------
37
#-------------------------------------------------------------------------------
38
# Function        : new_platform
38
# Function        : new_platform
39
#
39
#