Subversion Repositories DevTools

Rev

Rev 6445 | Rev 6463 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6445 Rev 6455
Line 94... Line 94...
94
my @opt_aars;                   # List of AARs
94
my @opt_aars;                   # List of AARs
95
 
95
 
96
#
96
#
97
#   Configuration
97
#   Configuration
98
#   Map JATS platforms to Shared library targets
98
#   Map JATS platforms to Shared library targets
-
 
99
#       The key is a JATS name for the target
-
 
100
#       The value is the subdir that android will expect to find the files in
99
#
101
#
100
my %SharedLibMap = (
102
my %SharedLibMap = (
101
    'ANDROIDARM'    => 'armeabi, armeabi-v7a',
103
    'ANDROIDARM'    => 'armeabi',
102
    'ANDROIDMIPS'   => 'mips',
104
    'ANDROIDMIPS'   => 'mips',
103
    'ANDROIDX86'    => 'x86',
105
    'ANDROIDX86'    => 'x86',
104
 
106
 
105
    'ANDROIDARM64'  => 'arm64-v8a',
107
    'ANDROIDARM64'  => 'arm64-v8a',
106
    'ANDROIDMIPS64' => 'mips64',
108
    'ANDROIDMIPS64' => 'mips64',
107
    'ANDROIDX86_64' => 'x86_64',
109
    'ANDROIDX86_64' => 'x86_64',
-
 
110
 
-
 
111
 
108
    );
112
    );
109
 
113
 
110
our $GBE_HOSTMACH;              # Sanity Test of machine type
114
our $GBE_HOSTMACH;              # Sanity Test of machine type
111
our $GBE_MAKE_TARGET;           # Current build target
115
our $GBE_MAKE_TARGET;           # Current build target
112
 
116