Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriain holmes <iain@xamarin.com>2015-07-09 15:13:24 +0300
committeriain holmes <iain@xamarin.com>2015-10-30 15:22:23 +0300
commit7165a8dc6a9fa754e88b825dc409b1dd49062d0f (patch)
tree3163bfffc9e0ad0b59a8866e71f05afcef4ccddb /configure
parentb59a5530f4909a442db858b7904113022bf1650d (diff)
[Build] Build for 64bit when the env var MONODEVELOP_64BIT_SAFE is defined
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 993151cbd8..c3e315f3b9 100755
--- a/configure
+++ b/configure
@@ -161,10 +161,10 @@ configure_packages ()
enable_tests=" "
fi
- if test xyes == x$x64; then
- enable_x64=--with-macarch=x86_64
- else
+ if [ -z "$MONODEVELOP_64BIT_SAFE" ]; then
enable_x64=--with-macarch=i386
+ else
+ enable_x64=--with-macarch=x86_64
fi
prefixarg="--prefix=$prefix"