This is an automated email from the git hooks/post-receive script.
firstyear pushed a change to branch master in repository 389-ds-base.
from 66ee27d Ticket 49526 - Improve create_test.py script new 7b03c31 Ticket 49537 - allow asan to build with stable rustc
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script.
firstyear pushed a commit to branch master in repository 389-ds-base.
commit 7b03c31d3e997debda6080d06f98a4adb0dbf40f Author: William Brown firstyear@redhat.com Date: Tue Jan 16 13:52:45 2018 +1000
Ticket 49537 - allow asan to build with stable rustc
Bug Description: Rustc has a policy of only allowing -Z flags on nightly - but there is an environment variable that allows unblocking these on stable releases.
Fix Description: Add RUSTC_BOOTSTRAP=1 to Makefile.am
https://pagure.io/389-ds-base/issue/49537
Author: wibrown
Review by: mreynolds (Thank you!) --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am index 82b1782..0ec12a3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1166,7 +1166,7 @@ libsds_la_LDFLAGS += -L$(abs_builddir)/.libs -lrsds libsds_la_DEPENDENCIES = librsds.so
librsds.so: src/libsds/Cargo.toml src/libsds/sds/lib.rs src/libsds/sds/tqueue.rs - CARGO_TARGET_DIR=$(abs_top_builddir)/rs \ + CARGO_TARGET_DIR=$(abs_top_builddir)/rs RUSTC_BOOTSTRAP=1 \ cargo rustc $(CARGO_FLAGS) --verbose --manifest-path=$(srcdir)/src/libsds/Cargo.toml \ -- $(RUSTC_FLAGS) mkdir -p $(abs_builddir)/.libs
389-commits@lists.fedoraproject.org