mirror of https://github.com/ArduPilot/ardupilot
Tools: ardupilotwaf: use classic clang linker when compiling on macOS
- Fix issue where linker fails with Xcode 15.3. - Add check for CC_VERSION. Signed-off-by: Rhys Mainwaring <rhys.mainwaring@me.com>
This commit is contained in:
parent
b23fe1c592
commit
2fc3e67ea8
|
@ -432,9 +432,14 @@ class Board:
|
|||
]
|
||||
|
||||
if cfg.env.DEST_OS == 'darwin':
|
||||
env.LINKFLAGS += [
|
||||
'-Wl,-dead_strip',
|
||||
]
|
||||
if self.cc_version_gte(cfg, 15, 0):
|
||||
env.LINKFLAGS += [
|
||||
'-Wl,-dead_strip,-ld_classic',
|
||||
]
|
||||
else:
|
||||
env.LINKFLAGS += [
|
||||
'-Wl,-dead_strip',
|
||||
]
|
||||
else:
|
||||
env.LINKFLAGS += [
|
||||
'-fno-exceptions',
|
||||
|
|
Loading…
Reference in New Issue