From: Patrick von Reth Date: Sat, 12 Jan 2013 10:32:45 +0000 (+0100) Subject: if windows and not msvc, set platform to mingw X-Git-Tag: v1.2.0~3^2~28^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bea333c22fc46f29c44413a7e5ca3f27d0b476d4;p=platform%2Fupstream%2Fninja.git if windows and not msvc, set platform to mingw --- diff --git a/bootstrap.py b/bootstrap.py index a847df9..331ea0f 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -96,6 +96,7 @@ else: '-DNINJA_BOOTSTRAP']) if options.windows: cflags.append('-D_WIN32_WINNT=0x0501') + conf_args.append("--platform=mingw") if options.x64: cflags.append('-m64') args.extend(cflags)