From 608898c15b9181a583d99d0da05f145997a98db0 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Sun, 9 Sep 2012 11:41:05 -0700 Subject: [PATCH] configure: add a "--dest-os" option to force a gyp "flavor" This makes cross-compiling easier. i.e. from my mac: ./configure --dest-cpu=arm --dest-os=linux --- configure | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure b/configure index a801b657332..8a2b3d645f5 100755 --- a/configure +++ b/configure @@ -159,6 +159,12 @@ parser.add_option("--dest-cpu", dest="dest_cpu", help="CPU architecture to build for. Valid values are: arm, ia32, x64") +parser.add_option("--dest-os", + action="store", + dest="dest_os", + help="Operating system to build for. Valid values are: " + "win, mac, solaris, freebsd, linux") + parser.add_option("--no-ifaddrs", action="store_true", dest="no_ifaddrs", @@ -465,6 +471,8 @@ write('config.mk', "# Do not edit. Generated by the configure script.\n" + if os.name == 'nt': gyp_args = ['-f', 'msvs', '-G', 'msvs_version=2010'] +elif options.dest_os: + gyp_args = ['-f', 'make-' + options.dest_os] else: gyp_args = ['-f', 'make']