Explorar o código

Merge pull request #15338 from touilleMan/disable-lto-gdnative-wrapper

[GDnative] Disable lto for gdnative wrapper
Rémi Verschelde %!s(int64=7) %!d(string=hai) anos
pai
achega
1e556173b5
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      modules/gdnative/SCsub

+ 8 - 0
modules/gdnative/SCsub

@@ -245,6 +245,14 @@ if ARGUMENTS.get('gdnative_wrapper', False):
     gd_wrapper_env = env.Clone()
     gd_wrapper_env = env.Clone()
     gd_wrapper_env.Append(CPPPATH=['#modules/gdnative/include/'])
     gd_wrapper_env.Append(CPPPATH=['#modules/gdnative/include/'])
 
 
+    if gd_wrapper_env['use_lto']:
+        if not env.msvc:
+            gd_wrapper_env.Append(CCFLAGS=['--no-lto'])
+            gd_wrapper_env.Append(LINKFLAGS=['--no-lto'])
+        else:
+            gd_wrapper_env.Append(CCFLAGS=['/GL-'])
+            gd_wrapper_env.Append(LINKFLAGS=['/LTCG:OFF'])
+
     if not env.msvc:
     if not env.msvc:
         gd_wrapper_env.Append(CCFLAGS=['-fPIC'])
         gd_wrapper_env.Append(CCFLAGS=['-fPIC'])