In compiler-rt, there’s a lot of checks to see if we’re running on an ARM. Some of them are: #if __arm__ while most of them are: #if defined(__arm__) I’m guessing that they should all be the second form. Is that correct? — Marshall