1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
|
package jogamp.common.os;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
import java.nio.ShortBuffer;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.List;
import jogamp.common.Debug;
import jogamp.common.os.elf.ElfHeaderPart1;
import jogamp.common.os.elf.ElfHeaderPart2;
import jogamp.common.os.elf.SectionArmAttributes;
import com.jogamp.common.nio.Buffers;
import com.jogamp.common.os.AndroidVersion;
import com.jogamp.common.os.NativeLibrary;
import com.jogamp.common.os.Platform;
import com.jogamp.common.os.Platform.ABIType;
import com.jogamp.common.os.Platform.CPUFamily;
import com.jogamp.common.os.Platform.CPUType;
import com.jogamp.common.os.Platform.OSType;
import com.jogamp.common.util.VersionNumber;
/**
* Abstract parent class of {@link Platform} initializing and holding
* platform information, which are initialized independent
* of other classes.
* <p>
* This class is not intended to be exposed in the public namespace
* and solely exist to solve initialization interdependencies.<br>
* Please use {@link Platform} to access the public fields!
* </p>
*/
public abstract class PlatformPropsImpl {
static final boolean DEBUG = Debug.debug("Platform");
/** Selected {@link Platform.OSType#MACOS} or {@link Platform.OSType#IOS} {@link VersionNumber}s. */
public static class OSXVersion {
/** OSX Tiger, i.e. 10.4.0 */
public static final VersionNumber Tiger = new VersionNumber(10,4,0);
/** OSX Lion, i.e. 10.7.0 */
public static final VersionNumber Lion = new VersionNumber(10,7,0);
/** OSX Mavericks, i.e. 10.9.0 */
public static final VersionNumber Mavericks = new VersionNumber(10,9,0);
}
/**
* Returns {@code true} if the given {@link CPUType}s and {@link ABIType}s are compatible.
*/
public static final boolean isCompatible(final CPUType cpu1, final ABIType abi1, final CPUType cpu2, final ABIType abi2) {
return cpu1.isCompatible(cpu2) && abi1.isCompatible(abi2);
}
//
// static initialization order:
//
/** Version 1.6. As a JVM version, it enables certain JVM 1.6 features. */
public static final VersionNumber Version16;
/** Version 1.7. As a JVM version, it enables certain JVM 1.7 features. */
public static final VersionNumber Version17;
/** Version 1.8. As a JVM version, it enables certain JVM 1.8 features. */
public static final VersionNumber Version18;
/** Version 1.9. As a JVM version, it enables certain JVM 1.9 features. Note the skipped first version number due to JEP 223. */
public static final VersionNumber Version9;
public static final String OS;
public static final String OS_lower;
public static final String OS_VERSION;
public static final VersionNumber OS_VERSION_NUMBER;
public static final String ARCH;
public static final String ARCH_lower;
public static final String JAVA_VENDOR;
public static final String JAVA_VENDOR_URL;
public static final String JAVA_VERSION;
public static final VersionNumber JAVA_VERSION_NUMBER;
public static final int JAVA_VERSION_UPDATE;
public static final String JAVA_VM_NAME;
public static final String JAVA_RUNTIME_NAME;
/** True if having {@link java.nio.LongBuffer} and {@link java.nio.DoubleBuffer} available. */
public static final boolean JAVA_SE;
/**
* True only if being compatible w/ language level 6, e.g. JRE 1.6.
* <p>
* Implies {@link #isJavaSE()}.
* </p>
* <p>
* <i>Note</i>: We claim Android is compatible.
* </p>
*/
public static final boolean JAVA_6;
/**
* True only if being compatible w/ language level 9, e.g. JRE 9.
* <p>
* Implies {@link #isJavaSE()} and {@link #JAVA_6}.
* </p>
* <p>
* Since JRE 9, the version string has dropped the major release number,
* see JEP 223: http://openjdk.java.net/jeps/223
* </p>
*/
public static final boolean JAVA_9;
public static final String NEWLINE;
public static final boolean LITTLE_ENDIAN;
public static final CPUType CPU_ARCH;
public static final ABIType ABI_TYPE;
public static final OSType OS_TYPE;
public static final String os_and_arch;
/**
* Usually GlueGen and subsequent JogAmp modules are build using dynamic libraries on supported platforms,
* hence this boolean is expected to be true.
* <p>
* However, on certain systems static libraries are being used on which native JNI library loading is disabled.
* </p>
*/
public static final boolean useDynamicLibraries;
static {
Version16 = new VersionNumber(1, 6, 0);
Version17 = new VersionNumber(1, 7, 0);
Version18 = new VersionNumber(1, 8, 0);
Version9 = new VersionNumber(9, 0, 0);
// We don't seem to need an AccessController.doPrivileged() block
// here as these system properties are visible even to unsigned Applets.
final boolean isAndroid = AndroidVersion.isAvailable; // also triggers it's static initialization
JAVA_VENDOR = System.getProperty("java.vendor");
JAVA_VENDOR_URL = System.getProperty("java.vendor.url");
JAVA_VERSION = System.getProperty("java.version");
JAVA_VERSION_NUMBER = new VersionNumber(JAVA_VERSION);
{
int usIdx = JAVA_VERSION.lastIndexOf("-u"); // OpenJDK update notation
int usOff;
if( 0 < usIdx ) {
usOff = 2;
} else {
usIdx = JAVA_VERSION.lastIndexOf("_"); // Oracle update notation
usOff = 1;
}
if( 0 < usIdx ) {
final String buildS = PlatformPropsImpl.JAVA_VERSION.substring(usIdx+usOff);
final VersionNumber update = new VersionNumber(buildS);
JAVA_VERSION_UPDATE = update.getMajor();
} else {
JAVA_VERSION_UPDATE = 0;
}
}
JAVA_VM_NAME = System.getProperty("java.vm.name");
JAVA_RUNTIME_NAME = getJavaRuntimeNameImpl();
JAVA_SE = initIsJavaSE();
JAVA_9 = JAVA_SE && JAVA_VERSION_NUMBER.compareTo(Version9) >= 0;
JAVA_6 = JAVA_SE && ( isAndroid || JAVA_9 || JAVA_VERSION_NUMBER.compareTo(Version16) >= 0 ) ;
NEWLINE = System.getProperty("line.separator");
OS = System.getProperty("os.name");
OS_lower = OS.toLowerCase();
OS_VERSION = System.getProperty("os.version");
OS_VERSION_NUMBER = new VersionNumber(OS_VERSION);
OS_TYPE = getOSTypeImpl(OS_lower, isAndroid);
// Hard values, i.e. w/ probing binaries
final String elfCpuName;
final CPUType elfCpuType;
final ABIType elfABIType;
final int elfLittleEndian;
final boolean elfValid;
{
final String[] _elfCpuName = { null };
final CPUType[] _elfCpuType = { null };
final ABIType[] _elfAbiType = { null };
final int[] _elfLittleEndian = { 0 }; // 1 - little, 2 - big
final boolean[] _elfValid = { false };
AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
RandomAccessFile in = null;
try {
final File file = queryElfFile(OS_TYPE);
if(DEBUG) {
System.err.println("ELF-1: Using "+file);
}
in = new RandomAccessFile(file, "r");
final ElfHeaderPart1 eh1 = readElfHeaderPart1(OS_TYPE, in);
if(DEBUG) {
System.err.println("ELF-1: Got "+eh1);
}
if( null != eh1 ) {
final ElfHeaderPart2 eh2 = readElfHeaderPart2(eh1, in);
if(DEBUG) {
System.err.println("ELF-2: Got "+eh2);
}
if( null != eh2 ) {
_elfCpuName[0] = eh2.cpuName;
_elfCpuType[0] = eh2.cpuType;
_elfAbiType[0] = eh2.abiType;
if( eh1.isLittleEndian() ) {
_elfLittleEndian[0] = 1;
} else if( eh1.isBigEndian() ) {
_elfLittleEndian[0] = 2;
}
_elfValid[0] = true;
}
}
} catch (final Throwable t) {
if(DEBUG) {
t.printStackTrace();
}
} finally {
if(null != in) {
try {
in.close();
} catch (final IOException e) { }
}
}
return null;
} });
elfCpuName = _elfCpuName[0];
elfCpuType = _elfCpuType[0];
elfABIType = _elfAbiType[0];
elfLittleEndian = _elfLittleEndian[0];
elfValid = _elfValid[0];
if( DEBUG ) {
System.err.println("Platform.Elf: valid "+elfValid+", elfCpuName "+elfCpuName+", cpuType "+elfCpuType+", abiType "+elfABIType+", elfLittleEndian "+elfLittleEndian);
}
}
// Determine endianess, favor ELF value
final boolean littleEndian = queryIsLittleEndianImpl();
if( elfValid ) {
switch( elfLittleEndian ) {
case 1:
LITTLE_ENDIAN = true;
break;
case 2:
LITTLE_ENDIAN = false;
break;
default:
LITTLE_ENDIAN = littleEndian;
break;
}
} else {
LITTLE_ENDIAN = littleEndian;
}
if( DEBUG ) {
System.err.println("Platform.Endian: test-little "+littleEndian+", elf[valid "+elfValid+", val "+elfLittleEndian+"] -> LITTLE_ENDIAN "+LITTLE_ENDIAN);
}
// Property values for comparison
// We might take the property values even if ELF values are available,
// since the latter only reflect the CPU/ABI version of the binary files!
final String propARCH = System.getProperty("os.arch");
final String propARCH_lower = propARCH.toLowerCase();
final CPUType propCpuType = CPUType.query(propARCH_lower);
final ABIType propABIType = ABIType.query(propCpuType, propARCH_lower);
if( DEBUG ) {
System.err.println("Platform.Property: ARCH "+propARCH+", CpuType "+propCpuType+", ABIType "+propABIType);
}
final int strategy;
if( isAndroid ) {
if( DEBUG ) {
System.err.println("Android: CPU_ABI1 str "+AndroidVersion.CPU_ABI+", CPU_TYPE "+AndroidVersion.CPU_TYPE+", ABI_TYPE "+AndroidVersion.ABI_TYPE);
System.err.println("Android: CPU_ABI2 str "+AndroidVersion.CPU_ABI2+", CPU_TYPE2 "+AndroidVersion.CPU_TYPE2+", ABI_TYPE2 "+AndroidVersion.ABI_TYPE2);
}
if( elfValid ) {
if( null != AndroidVersion.CPU_TYPE &&
isCompatible(elfCpuType, elfABIType, AndroidVersion.CPU_TYPE, AndroidVersion.ABI_TYPE) )
{
// ELF matches Android-1
ARCH = AndroidVersion.CPU_ABI;
ARCH_lower = ARCH;
CPU_ARCH = AndroidVersion.CPU_TYPE;
strategy = 110;
} else if( null != AndroidVersion.CPU_TYPE2 &&
isCompatible(elfCpuType, elfABIType, AndroidVersion.CPU_TYPE2, AndroidVersion.ABI_TYPE2) )
{
// ELF matches Android-2
ARCH = AndroidVersion.CPU_ABI2;
ARCH_lower = ARCH;
CPU_ARCH = AndroidVersion.CPU_TYPE2;
strategy = 111;
} else {
// We assume our ELF data beats AndroidVersion info (correctness)
ARCH = elfCpuType.toString();
ARCH_lower = ARCH.toLowerCase();
CPU_ARCH = elfCpuType;
strategy = 112;
}
ABI_TYPE = elfABIType;
} else {
if( AndroidVersion.CPU_TYPE.family == CPUFamily.ARM || AndroidVersion.CPU_TYPE.family == CPUFamily.X86 ||
null == AndroidVersion.CPU_TYPE2 ) {
// Favor Android-1: Either b/c ARM or x86 Family, or no Android-2
ARCH = AndroidVersion.CPU_ABI;
ARCH_lower = ARCH;
CPU_ARCH = AndroidVersion.CPU_TYPE;
ABI_TYPE = AndroidVersion.ABI_TYPE;
strategy = 120;
} else {
// Last resort Android-2
ARCH = AndroidVersion.CPU_ABI2;
ARCH_lower = ARCH;
CPU_ARCH = AndroidVersion.CPU_TYPE2;
ABI_TYPE = AndroidVersion.ABI_TYPE2;
strategy = 121;
}
}
} else {
if( elfValid ) {
if( isCompatible(elfCpuType, elfABIType, propCpuType, propABIType) ) {
// Use property ARCH, compatible w/ ELF
ARCH = propARCH;
ARCH_lower = propARCH_lower;
CPU_ARCH = propCpuType;
ABI_TYPE = propABIType;
strategy = 210;
} else {
// use ELF ARCH
ARCH = elfCpuName;
ARCH_lower = elfCpuName;
CPU_ARCH = elfCpuType;
ABI_TYPE = elfABIType;
strategy = 211;
}
} else {
// Last resort: properties
ARCH = propARCH;
ARCH_lower = propARCH_lower;
CPU_ARCH = propCpuType;
ABI_TYPE = propABIType;
strategy = 220;
}
}
if( OSType.IOS == OS_TYPE ) {
useDynamicLibraries = false;
} else {
useDynamicLibraries = true;
}
if( DEBUG ) {
System.err.println("Platform.Hard: ARCH "+ARCH+", CPU_ARCH "+CPU_ARCH+", ABI_TYPE "+ABI_TYPE+" - strategy "+strategy+"(isAndroid "+isAndroid+", elfValid "+elfValid+"), useDynLibs "+useDynamicLibraries);
}
os_and_arch = getOSAndArch(OS_TYPE, CPU_ARCH, ABI_TYPE, LITTLE_ENDIAN);
}
protected PlatformPropsImpl() {}
private static final String getJavaRuntimeNameImpl() {
// the fast path, check property Java SE instead of traversing through the ClassLoader
return AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override
public String run() {
return System.getProperty("java.runtime.name");
}
});
}
private static final boolean initIsJavaSE() {
if( null != JAVA_RUNTIME_NAME && JAVA_RUNTIME_NAME.indexOf("Java SE") != -1) {
return true;
}
// probe for classes we need on a SE environment
try {
Class.forName("java.nio.LongBuffer");
Class.forName("java.nio.DoubleBuffer");
return true;
} catch(final ClassNotFoundException ex) {
// continue with Java SE check
}
return false;
}
private static final boolean queryIsLittleEndianImpl() {
final ByteBuffer tst_b = Buffers.newDirectByteBuffer(Buffers.SIZEOF_INT); // 32bit in native order
final IntBuffer tst_i = tst_b.asIntBuffer();
final ShortBuffer tst_s = tst_b.asShortBuffer();
tst_i.put(0, 0x0A0B0C0D);
return 0x0C0D == tst_s.get(0);
}
@SuppressWarnings("unused")
private static final boolean contains(final String data, final String[] search) {
if(null != data && null != search) {
for(int i=0; i<search.length; i++) {
if(data.indexOf(search[i]) >= 0) {
return true;
}
}
}
return false;
}
/**
* Returns the {@link ABIType} of the current platform using given {@link CPUType cpuType}
* and {@link OSType osType} as a hint.
* <p>
* For Elf parsing one of the following binaries is used:
* <ul>
* <li>Linux: Current executable</li>
* <li>Android: Found gluegen-rt library</li>
* <li>Other: A found java/jvm native library.</li>
* </ul>
* </p>
* <p>
* Elf ARM Tags are read using {@link ElfHeader}, .. and {@link SectionArmAttributes#abiVFPArgsAcceptsVFPVariant(byte)}.
* </p>
*/
private static final File queryElfFile(final OSType osType) {
File file = null;
try {
if( OSType.ANDROID == osType ) {
file = new File(NativeLibrary.findLibrary("gluegen-rt", PlatformPropsImpl.class.getClassLoader()));
} else {
if( OSType.LINUX == osType ) {
file = new File("/proc/self/exe");
if( !checkFileReadAccess(file) ) {
file = null;
}
}
if( null == file ) {
file = findSysLib("java");
}
if( null == file ) {
file = findSysLib("jvm");
}
}
} catch(final Throwable t) {
if(DEBUG) {
t.printStackTrace();
}
}
return file;
}
private static final ElfHeaderPart1 readElfHeaderPart1(final OSType osType, final RandomAccessFile in) {
ElfHeaderPart1 res = null;
try {
res = ElfHeaderPart1.read(osType, in);
} catch(final Throwable t) {
if(DEBUG) {
System.err.println("Caught: "+t.getMessage());
t.printStackTrace();
}
}
return res;
}
private static final ElfHeaderPart2 readElfHeaderPart2(final ElfHeaderPart1 eh1, final RandomAccessFile in) {
ElfHeaderPart2 res = null;
try {
res = ElfHeaderPart2.read(eh1, in);
} catch(final Throwable t) {
if(DEBUG) {
System.err.println("Caught: "+t.getMessage());
t.printStackTrace();
}
}
return res;
}
private static boolean checkFileReadAccess(final File file) {
try {
return file.isFile() && file.canRead();
} catch (final Throwable t) { }
return false;
}
private static File findSysLib(final String libName) {
final ClassLoader cl = PlatformPropsImpl.class.getClassLoader();
final List<String> possibleLibPaths = NativeLibrary.enumerateLibraryPaths(libName, libName, libName, true, cl);
for(int i=0; i<possibleLibPaths.size(); i++) {
final String libPath = possibleLibPaths.get(i);
final File lib = new File(libPath);
if(DEBUG) {
System.err.println("findSysLib #"+i+": test "+lib);
}
if( checkFileReadAccess(lib) ) {
return lib;
}
if(DEBUG) {
System.err.println("findSysLib #"+i+": "+lib+" not readable");
}
}
return null;
}
private static final OSType getOSTypeImpl(final String osLower, final boolean isAndroid) throws RuntimeException {
if ( isAndroid ) {
return OSType.ANDROID;
}
if ( osLower.startsWith("linux") ) {
return OSType.LINUX;
}
if ( osLower.startsWith("freebsd") ) {
return OSType.FREEBSD;
}
if ( osLower.startsWith("android") ) {
return OSType.ANDROID;
}
if ( osLower.startsWith("mac os x") ||
osLower.startsWith("darwin") ) {
return OSType.MACOS;
}
if ( osLower.startsWith("sunos") ) {
return OSType.SUNOS;
}
if ( osLower.startsWith("hp-ux") ) {
return OSType.HPUX;
}
if ( osLower.startsWith("windows") ) {
return OSType.WINDOWS;
}
if ( osLower.startsWith("kd") ) {
return OSType.OPENKODE;
}
if ( osLower.startsWith("ios") ) {
return OSType.IOS;
}
throw new RuntimeException("Please port OS detection to your platform (" + OS_lower + "/" + ARCH_lower + ")");
}
/**
* kick off static initialization of <i>platform property information</i>
*/
public static void initSingleton() { }
/**
* Returns the GlueGen common name for the given
* {@link OSType}, {@link CPUType}, {@link ABIType} and {@code littleEndian}.
* <p>
* Consult 'gluegen/make/gluegen-cpptasks-base.xml' to complete/sync mapping!
* </p>
*
* An excerpt of supported <code>os.and.arch</code> strings:
* <ul>
* <li>android-armv6</li>
* <li>android-aarch64</li>
* <li>android-x86</li>
* <li>linux-armv6</li>
* <li>linux-armv6hf</li>
* <li>linux-i586</li>
* <li>linux-ppc</li>
* <li>linux-mips</li>
* <li>linux-mipsel</li>
* <li>linux-superh</li>
* <li>linux-sparc</li>
* <li>linux-aarch64</li>
* <li>linux-amd64</li>
* <li>linux-ppc64</li>
* <li>linux-ppc64le</li>
* <li>linux-mips64</li>
* <li>linux-ia64</li>
* <li>linux-sparcv9</li>
* <li>linux-risc2.0</li>
* <li>freebsd-i586</li>
* <li>freebsd-amd64</li>
* <li>hpux-hppa</li>
* <li>macosx-universal</li>
* <li>solaris-sparc</li>
* <li>solaris-sparcv9</li>
* <li>solaris-amd64</li>
* <li>solaris-i586</li>
* <li>windows-amd64</li>
* <li>windows-i586</li>
* </ul>
* @return The <i>os.and.arch</i> value.
*/
public static final String getOSAndArch(final OSType osType, final CPUType cpuType, final ABIType abiType, final boolean littleEndian) {
final String os_;
final String _and_arch_tmp, _and_arch_final;
switch( cpuType ) {
case ARM:
case ARMv5:
case ARMv6:
case ARMv7:
if( ABIType.EABI_GNU_ARMHF == abiType ) {
_and_arch_tmp = "armv6hf";
} else {
_and_arch_tmp = "armv6";
}
break;
case X86_32:
_and_arch_tmp = "i586";
break;
case PPC:
_and_arch_tmp = "ppc";
break;
case MIPS_32:
_and_arch_tmp = littleEndian ? "mipsel" : "mips";
break;
case SuperH:
_and_arch_tmp = "superh";
break;
case SPARC_32:
_and_arch_tmp = "sparc";
break;
case ARM64:
case ARMv8_A:
_and_arch_tmp = "aarch64";
break;
case X86_64:
_and_arch_tmp = "amd64";
break;
case PPC64:
_and_arch_tmp = littleEndian ? "ppc64le" : "ppc64";
break;
case MIPS_64:
_and_arch_tmp = "mips64";
break;
case IA64:
_and_arch_tmp = "ia64";
break;
case SPARCV9_64:
_and_arch_tmp = "sparcv9";
break;
case PA_RISC2_0:
_and_arch_tmp = "risc2.0";
break;
default:
throw new InternalError("Unhandled CPUType: "+cpuType);
}
switch( osType ) {
case ANDROID:
os_ = "android";
_and_arch_final = _and_arch_tmp;
break;
case MACOS:
os_ = "macosx";
_and_arch_final = "universal";
break;
case IOS:
os_ = "ios";
_and_arch_final = _and_arch_tmp;
break;
case WINDOWS:
os_ = "windows";
_and_arch_final = _and_arch_tmp;
break;
case OPENKODE:
os_ = "openkode"; // TODO: think about that
_and_arch_final = _and_arch_tmp;
break;
case LINUX:
os_ = "linux";
_and_arch_final = _and_arch_tmp;
break;
case FREEBSD:
os_ = "freebsd";
_and_arch_final = _and_arch_tmp;
break;
case SUNOS:
os_ = "solaris";
_and_arch_final = _and_arch_tmp;
break;
case HPUX:
os_ = "hpux";
_and_arch_final = "hppa"; // TODO: really only hppa ?
break;
default:
throw new InternalError("Unhandled OSType: "+osType);
}
return os_ + "-" + _and_arch_final;
}
}
|