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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2018-05-06 21:18:55 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-05-06 21:18:55 +0300
commit771353bf1eea799b5d234259462ea1262c52d564 (patch)
treea6383fd83ff8fe3f2fc9ec6a830e79c03be0479f /sdks/builds/Makefile
parent397be364fb94e227943933e0b0afbb75993e1996 (diff)
[sdks] Use cmake to build llvm. (#8260)
* [sdks] Use cmake to build llvm. * [sdks] Build all targets for llvm32 as well, since android might not build llvm64. * [sdks] Build the llvm windows builds using cmake as well. * Address review comments. * Switch to the release60 branch of LLVM as an experiment. * [sdks] Bump LLVM. * Bump LLVM. * [sdks] Fix the build. * [llvm] Emit default debugging info for all llvm builders otherwise methods without debug info like iterators will fail to compile. * Fix a crash if ctx->minfo is not set. * [sdks] Add an LLVM_BRANCH variable.
Diffstat (limited to 'sdks/builds/Makefile')
-rw-r--r--sdks/builds/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/sdks/builds/Makefile b/sdks/builds/Makefile
index 4a616544c88..235656b66fd 100644
--- a/sdks/builds/Makefile
+++ b/sdks/builds/Makefile
@@ -8,6 +8,7 @@ CONFIGURATION?=release
RELEASE=$(if $(filter $(CONFIGURATION),release),1)
CCACHE:=$(if $(DISABLE_CCACHE),,$(shell which ccache))
+NINJA:=$(shell which ninja)
UNAME=$(shell uname)
ifneq ($(UNAME),Darwin)