aboutsummaryrefslogtreecommitdiff
path: root/depends/patches
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-09-06 15:38:52 +0100
committerfanquake <fanquake@gmail.com>2023-09-06 16:36:40 +0100
commit7d5815293ed8a3dea68b61a78944e410f02b147f (patch)
treeb964fa3d6703b0f8a166acd74266946cd98fa0f1 /depends/patches
parent1ed1183f47794d1a2d8deced58226b2a4e84eaf0 (diff)
downloadbitcoin-7d5815293ed8a3dea68b61a78944e410f02b147f.tar.xz
depends: cctools 986 & ld64 711
Diffstat (limited to 'depends/patches')
-rw-r--r--depends/patches/native_cctools/no_fixup_chains.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/depends/patches/native_cctools/no_fixup_chains.patch b/depends/patches/native_cctools/no_fixup_chains.patch
deleted file mode 100644
index 2516ea8200..0000000000
--- a/depends/patches/native_cctools/no_fixup_chains.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-commit 5860b35ff6c7241d1c35a1b3197b45e5c9ff86cf
-Author: fanquake <fanquake@gmail.com>
-Date: Thu Jun 29 11:52:43 2023 +0100
-
- ld64: add support for -no_fixup_chains
-
- This is added in later versions, and is required if we want to be able
- to disable fixup_chains, for use in security tests.
-
-diff --git a/cctools/ld64/src/ld/Options.cpp b/cctools/ld64/src/ld/Options.cpp
-index 15e8e88..b6580af 100644
---- a/cctools/ld64/src/ld/Options.cpp
-+++ b/cctools/ld64/src/ld/Options.cpp
-@@ -4128,6 +4128,9 @@ void Options::parse(int argc, const char* argv[])
- else if ( strcmp(arg, "-fixup_chains") == 0 ) {
- fMakeChainedFixups = true;
- }
-+ else if ( strcmp(arg, "-no_fixup_chains") == 0 ) {
-+ fMakeChainedFixups = false;
-+ }
- else if (strcmp(arg, "-debug_variant") == 0) {
- fDebugVariant = true;
- }