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
path: root/mcs/build
diff options
context:
space:
mode:
authorLudovic Henry <luhenry@microsoft.com>2019-02-14 02:31:31 +0300
committerGitHub <noreply@github.com>2019-02-14 02:31:31 +0300
commite0643e5ac7272ae762b3ecad3456142ea7579728 (patch)
tree36736f37e8f60c1393d9a7300777241da506b8dc /mcs/build
parent1c2ef6a4724c7095bb45702859ad475fb7de64cd (diff)
[ci] Fix Linux x64 Bitcode job (#12970)
* [ci] Fix Linux x64 Bitcode job * [ci] Add Bitcode+Interpreter job * [ci] Improve output information when AOTting the BCL
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/library.make2
-rw-r--r--mcs/build/rules.make4
2 files changed, 3 insertions, 3 deletions
diff --git a/mcs/build/library.make b/mcs/build/library.make
index b5c88da0b46..ecae6592173 100644
--- a/mcs/build/library.make
+++ b/mcs/build/library.make
@@ -352,7 +352,7 @@ library_CLEAN_FILES += $(PROFILE)_$(LIBRARY_NAME)_aot.log
ifdef PLATFORM_AOT_SUFFIX
$(the_lib)$(PLATFORM_AOT_SUFFIX): $(the_lib)
- $(Q_AOT) MONO_PATH='$(the_libdir_base)' > $(PROFILE)_$(LIBRARY_NAME)_aot.log 2>&1 $(RUNTIME) $(AOT_BUILD_FLAGS) --debug $(the_lib)
+ $(Q_AOT) MONO_PATH='$(the_libdir_base)' $(RUNTIME) $(AOT_BUILD_FLAGS) --debug $(the_lib)
all-local-aot: $(the_lib)$(PLATFORM_AOT_SUFFIX)
endif
diff --git a/mcs/build/rules.make b/mcs/build/rules.make
index e4adbb88e5e..c15530f48f8 100644
--- a/mcs/build/rules.make
+++ b/mcs/build/rules.make
@@ -204,12 +204,12 @@ endif
%.dll$(PLATFORM_AOT_SUFFIX): %.dll
@ mkdir -p $<_bitcode_tmp
- $(Q_AOT) MONO_PATH="$(topdir)/class/lib/$(PROFILE)" $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$<_bitcode_tmp --verbose $< > $@.aot-log
+ $(Q_AOT) MONO_PATH="$(topdir)/class/lib/$(PROFILE)" $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$<_bitcode_tmp $<
@ rm -rf $<_bitcode_tmp
%.exe$(PLATFORM_AOT_SUFFIX): %.exe
@ mkdir -p $<_bitcode_tmp
- $(Q_AOT) MONO_PATH="$(topdir)/class/lib/$(PROFILE)" $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$<_bitcode_tmp --verbose $< > $@.aot-log
+ $(Q_AOT) MONO_PATH="$(topdir)/class/lib/$(PROFILE)" $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$<_bitcode_tmp $<
@ rm -rf $<_bitcode_tmp
endif #ifneq ("$(wildcard $(topdir)/class/lib/$(PROFILE))","")