Quellcode durchsuchen

scons: Unbreak mingw builds.

tags/mesa_20090313
José Fonseca vor 17 Jahren
Ursprung
Commit
6fe421cf46
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1
    1
      scons/gallium.py
  2. 1
    1
      scons/generic.py

+ 1
- 1
scons/gallium.py Datei anzeigen

@@ -438,7 +438,7 @@ def generate(env):
linkflags += ['-m32']
if env['machine'] == 'x86_64':
linkflags += ['-m64']
if platform == 'windows':
if platform == 'windows' and msvc:
# See also:
# - http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx
linkflags += [

+ 1
- 1
scons/generic.py Datei anzeigen

@@ -517,7 +517,7 @@ def generate(env):
linkflags += ['-m32']
if env['machine'] == 'x86_64':
linkflags += ['-m64']
if platform == 'windows':
if platform == 'windows' and msvc:
# See also:
# - http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx
linkflags += [

Laden…
Abbrechen
Speichern