diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-07 16:10:52 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-07 16:10:52 -0700 |
commit | 06a8c252d94f34a3729aaefe8cb89fbe1a877a57 (patch) | |
tree | 0281525890a80c38f571df8b380ddf465652c57f /src | |
parent | b08947097b061a1b6dc2682c1beace03942d86fd (diff) |
switch to le32 target by default1.4.3
Diffstat (limited to 'src')
-rw-r--r-- | src/settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.js b/src/settings.js index ba1f6a83..d029598a 100644 --- a/src/settings.js +++ b/src/settings.js @@ -17,8 +17,8 @@ var QUANTUM_SIZE = 4; // This is the size of an individual field in a structure. // // Changing this from the default of 4 is deprecated. -var TARGET_X86 = 1; // For le32-unknown-nacl -var TARGET_LE32 = 0; // For i386-pc-linux-gnu +var TARGET_X86 = 0; // For i386-pc-linux-gnu +var TARGET_LE32 = 1; // For le32-unknown-nacl var CORRECT_SIGNS = 1; // Whether we make sure to convert unsigned values to signed values. // Decreases performance with additional runtime checks. Might not be |