+rustc (1.42.0+dfsg1-2) UNRELEASED; urgency=medium
+
+ * Drop sparc64 workaround. (Closes: #956413)
+ * Drop stack-gap workaround for old kernels and rust versions.
+
+ -- Ximin Luo <infinity0@debian.org> Sat, 11 Apr 2020 20:36:26 +0100
+
rustc (1.42.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
RUSTFLAGS += --cap-lints warn --remap-path-prefix=$(CURDIR)=/usr/src/rustc-$(RUST_LONG_VERSION)
export CFLAGS CXXFLAGS CPPFLAGS LDFLAGS RUSTFLAGS
export CARGO_HOME = $(CURDIR)/debian/cargo
-ifneq (,$(filter $(DEB_BUILD_ARCH), sparc64))
-export CARGO_INCREMENTAL = 0
-endif
# Defines DEB_*_RUST_TYPE triples
include debian/architecture.mk
SRC_CLEAN = src/bootstrap/bootstrap.pyc \
src/etc/__pycache__/
-# Workaround for linux #865549
-ifeq (0,$(shell test $$(uname -s) = "Linux" -a $$(getconf PAGESIZE) -gt 4096; echo $$?))
- SYSTEM_WORKAROUNDS += ulimit -s $$(expr $$(getconf PAGESIZE) / 1024 '*' 256 + 8192);
-endif
# Try to work around #933045
ifneq (,$(filter $(DEB_BUILD_ARCH), mips mipsel))
SYSTEM_WORKAROUNDS += export MALLOC_ARENA_MAX=1;