Closed
Bug 400797
Opened 18 years ago
Closed 18 years ago
the solution file doesn't define a pre processor flag __i386__ needed for endianess check
Categories
(Tamarin Graveyard :: Build Config, defect)
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 396428
People
(Reporter: raja, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7
Build Identifier: hg cloned tamarin-central
The file shell/DataIO.h (in function GetNativeEndian)
uses a flag __i386__ which is not defined in the avmplus_8.sln/vcproj build files.
This causes the endianess to default to bigendian while compiling the avmplus shell on win32 systems.
Replacing ___i386__ with WIN32 could be a fix.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1•18 years ago
|
||
Isn't __i386__ an intrinsic? I explicitly changed it from WIN32 to __i386__ so that Linux/Mac x86 processors have the correct endianness.
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•