mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
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
fd9423b254
commit
513a6b6206
@ -433,6 +433,11 @@ class Board:
|
|||||||
]
|
]
|
||||||
|
|
||||||
if cfg.env.DEST_OS == 'darwin':
|
if cfg.env.DEST_OS == 'darwin':
|
||||||
|
if self.cc_version_gte(cfg, 15, 0):
|
||||||
|
env.LINKFLAGS += [
|
||||||
|
'-Wl,-dead_strip,-ld_classic',
|
||||||
|
]
|
||||||
|
else:
|
||||||
env.LINKFLAGS += [
|
env.LINKFLAGS += [
|
||||||
'-Wl,-dead_strip',
|
'-Wl,-dead_strip',
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user