Skip to content

Commit

Permalink
[runtime] Accomplish BITCODE build symbol sharing with only make (mon…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkyte authored and vargaz committed Jul 26, 2016
1 parent 3bd3c27 commit f9fe0e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,13 @@ get-monolite-latest:
cd $(mcslib) && { (wget -O- $(monolite_url) || curl $(monolite_url)) | gzip -d | tar xf - ; }
cd $(mcslib) && mv -f monolite-* monolite

if BITCODE
BITCODE_CHECK=yes
endif

.PHONY: check-ci
check-ci:
MONO_LLVMONLY=$(BITCODE) $(srcdir)/scripts/ci/run-test-$(TEST_PROFILE).sh
MONO_LLVMONLY=$(BITCODE_CHECK) $(srcdir)/scripts/ci/run-test-$(TEST_PROFILE).sh

.PHONY: validate do-build-mono-mcs mcs-do-clean mcs-do-tests
validate: do-build-mono-mcs
Expand Down
5 changes: 0 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -892,11 +892,6 @@ AM_CONDITIONAL(INSTALL_MOBILE_STATIC, [test "x$with_mobile_static" != "xno"])

AC_SUBST(INSTALL_MOBILE_STATIC)

AM_COND_IF(BITCODE, [
BITCODE=TRUE
AC_SUBST(BITCODE)
])

default_profile=net_4_x
if test -z "$INSTALL_MONODROID_TRUE"; then :
default_profile=monodroid
Expand Down

0 comments on commit f9fe0e4

Please sign in to comment.