Files
MSYS2-packages/scons/mingw_w64.py
2015-06-05 21:16:23 -03:00

22 lines
444 B
Python

"""SCons.Tool.mingw_w64
Tool-specific initialization for MinGW-w64 (http://mingw-w64.sourceforge.net)
"""
#
# Copyright (c) 2015 Renato Silva
# This module is based on SCons.Tool.mingw and is licensed under the same terms
#
__revision__ = "unknown"
from SCons.Tool.mingw import *
import SCons.Tool.mingw
import SCons.Util
def find(env):
path = env.WhereIs('gcc')
if (path):
return path
return SCons.Util.WhereIs('gcc')