summaryrefslogtreecommitdiff
path: root/dev-db/mongodb/files/extrapatch-sconstruct.patch
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-05-06 20:27:34 +0100
committerSam James <sam@gentoo.org>2025-05-06 20:32:06 +0100
commit8ee176dbe6fb61293b3b0ac57d859261e0ca902e (patch)
tree08dbda928eb75de6235a9c7c37e5ee44ecfde6ee /dev-db/mongodb/files/extrapatch-sconstruct.patch
parent07da7cbf83135a8830a1da146b594d4b2e615797 (diff)
downloadgentoo-8ee176dbe6fb61293b3b0ac57d859261e0ca902e.tar.gz
gentoo-8ee176dbe6fb61293b3b0ac57d859261e0ca902e.tar.bz2
gentoo-8ee176dbe6fb61293b3b0ac57d859261e0ca902e.zip
dev-db/mongodb: move all patches to devspae
Wanted to do this after because the patches are a mess and having some history for them is good. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/mongodb/files/extrapatch-sconstruct.patch')
-rw-r--r--dev-db/mongodb/files/extrapatch-sconstruct.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-db/mongodb/files/extrapatch-sconstruct.patch b/dev-db/mongodb/files/extrapatch-sconstruct.patch
deleted file mode 100644
index 21c09bc5c9a1..000000000000
--- a/dev-db/mongodb/files/extrapatch-sconstruct.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/SConstruct
-+++ b/SConstruct
-@@ -3217,8 +3205,12 @@ if not env.TargetOSIs('windows', 'macOS') and (env.Too
- # setting it for both C and C++ by setting both of CFLAGS and
- # CXXFLAGS.
-
-+ arm_march_flag = "armv8-a"
-+ if get_option('use-hardware-crc32') == "on":
-+ arm_march_flag += "+crc"
-+
- default_targeting_flags_for_architecture = {
-- "aarch64": {"-march=": "armv8.2-a", "-mtune=": "generic"},
-+ "aarch64": {"-march=": arm_march_flag, "-mtune=": "generic"},
- "i386": {"-march=": "nocona", "-mtune=": "generic"},
- "ppc64le": {"-mcpu=": "power8", "-mtune=": "power8", "-mcmodel=": "medium"},
- "s390x": {"-march=": "z196", "-mtune=": "zEC12"},