Skip to content
Snippets Groups Projects
Commit 4dc9e84d authored by Matthew Waters's avatar Matthew Waters :koala: Committed by Nirbheek Chauhan
Browse files

config/ios: remove unneeded (-Wl) minimum ios version

We are already setting the minimum version via a (-m) argument and the
-Wl, variant now produces errors from clang.

Part-of: <!1289>
parent 7c04cc7f
No related branches found
No related tags found
1 merge request!1289ci: update to macos sonoma (14)
......@@ -133,10 +133,7 @@ else:
env['CFLAGS'] = env['CPPFLAGS']
env['LDFLAGS'] = env['CPPFLAGS'] + ' -L{} '.format(lib_dir)
if ios_platform == 'iPhoneOS':
env['LDFLAGS'] += '-Wl,-iphoneos_version_min,{0} '.format(ios_min_version)
env['CCASFLAGS'] = '-miphoneos-version-min={} '.format(ios_min_version)
else:
env['LDFLAGS'] += '-Wl,-ios_simulator_version_min,{0} '.format(ios_min_version)
env['CFLAGS'] += extra_cflags
env['LDFLAGS'] += extra_ldflags
env['OBJCFLAGS'] = env['CFLAGS'] + extra_objcflags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment