remove old rust versions
This commit is contained in:
-39
@@ -1,39 +0,0 @@
|
||||
From 74c4900aab22acdb3bff0b7917fbfbe106ec9aec Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 20 Oct 2014 14:04:45 -0400
|
||||
Subject: [PATCH] mk/rt: "export CC" does not seem to work (gcc observed), use
|
||||
explicit shell variables instead
|
||||
|
||||
---
|
||||
mk/rt.mk | 11 +++++------
|
||||
1 file changed, 5 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/mk/rt.mk b/mk/rt.mk
|
||||
index de06d49..3e05012 100644
|
||||
--- a/mk/rt.mk
|
||||
+++ b/mk/rt.mk
|
||||
@@ -284,16 +284,15 @@ endif
|
||||
# ./configure script. This is done to force libbacktrace to *not* use the
|
||||
# atomic/sync functionality because it pulls in unnecessary dependencies and we
|
||||
# never use it anyway.
|
||||
-$$(BACKTRACE_BUILD_DIR_$(1))/Makefile: \
|
||||
- export CFLAGS:=$$(CFG_GCCISH_CFLAGS_$(1):-Werror=) \
|
||||
- -fno-stack-protector
|
||||
-$$(BACKTRACE_BUILD_DIR_$(1))/Makefile: export CC:=$$(CC_$(1))
|
||||
-$$(BACKTRACE_BUILD_DIR_$(1))/Makefile: export AR:=$$(AR_$(1))
|
||||
-$$(BACKTRACE_BUILD_DIR_$(1))/Makefile: export RANLIB:=$$(AR_$(1)) s
|
||||
$$(BACKTRACE_BUILD_DIR_$(1))/Makefile: $$(BACKTRACE_DEPS) $$(MKFILE_DEPS)
|
||||
+ @$$(call E, configure: libbacktrace for $(1))
|
||||
$$(Q)rm -rf $$(BACKTRACE_BUILD_DIR_$(1))
|
||||
$$(Q)mkdir -p $$(BACKTRACE_BUILD_DIR_$(1))
|
||||
$$(Q)(cd $$(BACKTRACE_BUILD_DIR_$(1)) && \
|
||||
+ CC="$$(CC_$(1))" \
|
||||
+ AR="$$(AR_$(1))" \
|
||||
+ RANLIB="$$(AR_$(1)) s" \
|
||||
+ CFLAGS="$$(CFG_GCCISH_CFLAGS_$(1):-Werror=) -fno-stack-protector" \
|
||||
$(S)src/libbacktrace/configure --target=$(1) --host=$(CFG_BUILD))
|
||||
$$(Q)echo '#undef HAVE_ATOMIC_FUNCTIONS' >> \
|
||||
$$(BACKTRACE_BUILD_DIR_$(1))/config.h
|
||||
--
|
||||
2.1.2
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
|
||||
SRCREV = "7b021859a4ea33bb0f5512649a5c9792648e9ad6"
|
||||
|
||||
require rust-git.inc
|
||||
@@ -1,5 +0,0 @@
|
||||
SRCREV = "1652a1f2c61883c5f2b55a952796619d8aef365e"
|
||||
require rust-git.inc
|
||||
|
||||
# Doesn't build cargo as of 2014-10-28
|
||||
DEFAULT_PREFERENCE = "-1"
|
||||
@@ -1,5 +0,0 @@
|
||||
SRCREV = "51a25c7f96ad0d00836314d705e3f0a477562a2c"
|
||||
require rust-git.inc
|
||||
|
||||
# Doesn't build cargo as of 2014-10-28
|
||||
# Testing with cargo 2014-11-01 (603f29d3421d5aa7396dc57f966e8a80e86d5e0d)
|
||||
@@ -1,6 +0,0 @@
|
||||
SRCREV = "1b2ad7831f1745bf4a4709a1fa1772afb47c933c"
|
||||
require rust-git.inc
|
||||
|
||||
# Doesn't build cargo as of 2014-10-28
|
||||
# Doesn't build cargo 2014-11-01 (603f29d3421d5aa7396dc57f966e8a80e86d5e0d) (latest at the time)
|
||||
DEFAULT_PREFERENCE = "-1"
|
||||
@@ -1,2 +0,0 @@
|
||||
SRCREV = "ceeac26de859bd217d8ff576ff291dbd38ff3951"
|
||||
require rust-git.inc
|
||||
@@ -1,2 +0,0 @@
|
||||
SRCREV = "f0ca717c643cbef31859e443ee20db4465ac8864"
|
||||
require rust-git.inc
|
||||
@@ -1,2 +0,0 @@
|
||||
SRCREV = "efc9a441b9f48912166b0ce375efe677edc0e93a"
|
||||
require rust-git.inc
|
||||
@@ -1,7 +0,0 @@
|
||||
SRC_URI[md5sum] = "24f80304da2ef1c0362b7caf700390f9"
|
||||
SRC_URI[sha256sum] = "883e66b24d90d9957c5c538469fcde6f0668e5fb6448beecfc60884060e769b7"
|
||||
|
||||
SRC_URI_append = "\
|
||||
file://0001-mk-rt-export-CC-does-not-seem-to-work-gcc-observed-u.patch \
|
||||
"
|
||||
require rust-release.inc
|
||||
Reference in New Issue
Block a user