Skip to content

Commit ddcc82d

Browse files
committed
Added a fixme for assuming the ABI on ARM.
The compile process must be provided an ABI on ARM, otherwise it doesn't know whether the CPU supports hard float.
1 parent 58e40e1 commit ddcc82d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/target.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,7 @@ def swift_triple(self):
364364
if self.sdk == OSType.MacOSX:
365365
return None
366366
elif self.sdk == OSType.Linux:
367+
# FIXME: It would be nice to detect the host ABI here
367368
if self.arch == ArchType.arm:
368369
triple += "-unknown-linux-gnueabihf"
369370
else:

0 commit comments

Comments
 (0)