diff options
author | Sven Gothel <[email protected]> | 2011-10-24 10:11:03 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-10-24 10:11:03 +0200 |
commit | 0bafac07b61f10c1a24e8c052937607bbfcb39ec (patch) | |
tree | 676400dcb7cc1a83bbdef7ba9c0ca95a0c54b45d /src/java/jogamp | |
parent | 6ea352bea79ed74a51ee4f63833b7f4b25b00ffc (diff) |
MachineDescriptor Static: Add Mac-OsX 32bit gcc4 special case with sizeof(long double) == 8
Diffstat (limited to 'src/java/jogamp')
-rw-r--r-- | src/java/jogamp/common/os/MachineDescriptionRuntime.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/java/jogamp/common/os/MachineDescriptionRuntime.java b/src/java/jogamp/common/os/MachineDescriptionRuntime.java index e7f156f..3a89395 100644 --- a/src/java/jogamp/common/os/MachineDescriptionRuntime.java +++ b/src/java/jogamp/common/os/MachineDescriptionRuntime.java @@ -78,6 +78,8 @@ public class MachineDescriptionRuntime { return StaticConfig.ARMle_EABI; } else if(Platform.getOSType() == Platform.OSType.WINDOWS) { return StaticConfig.X86_32_WINDOWS; + } else if(Platform.getOSType() == Platform.OSType.MACOS) { + return StaticConfig.X86_32_MACOS; } return StaticConfig.X86_32_UNIX; } else { |