2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-17 13:12:28 +00:00
repo/extra/mold/patches/elf_amd64_only.patch

64 lines
1.8 KiB
Diff
Raw Normal View History

2023-03-17 00:49:05 +00:00
From 3057ba9c59a4d3e8d027d1cb71c1212e287dcf84 Mon Sep 17 00:00:00 2001
Message-Id: <3057ba9c59a4d3e8d027d1cb71c1212e287dcf84.1679014002.git.owen@owenrafferty.com>
2022-12-27 02:28:51 +00:00
From: Owen Rafferty <owen@owenrafferty.com>
Date: Mon, 26 Dec 2022 20:20:01 -0600
Subject: [PATCH] only build support for elf amd64
---
2023-03-17 00:49:05 +00:00
CMakeLists.txt | 15 +--------------
elf/main.cc | 5 -----
2023-01-07 04:05:46 +00:00
2 files changed, 1 insertion(+), 19 deletions(-)
2022-12-27 02:28:51 +00:00
2022-09-27 17:10:15 +00:00
diff --git a/CMakeLists.txt b/CMakeLists.txt
2023-03-17 00:49:05 +00:00
index ef0951a2..d24b9a1c 100644
2022-09-27 17:10:15 +00:00
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
2023-03-17 00:49:05 +00:00
@@ -284,8 +284,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
2022-11-13 06:22:42 +00:00
# compiler instances. This is hacky but greatly reduces compile time
# on a multicore machine.
2022-09-27 17:10:15 +00:00
list(APPEND MOLD_ELF_TARGETS
2022-10-19 16:53:39 +00:00
- X86_64 I386 ARM64 ARM32 RV32LE RV32BE RV64LE RV64BE
2023-01-07 04:05:46 +00:00
- PPC32 PPC64V1 PPC64V2 S390X SPARC64 M68K SH4 ALPHA)
2022-09-27 17:10:15 +00:00
+ X86_64)
list(APPEND MOLD_ELF_TEMPLATE_FILES
elf/cmdline.cc
2023-03-17 00:49:05 +00:00
@@ -355,18 +354,6 @@ target_sources(mold PRIVATE
2023-01-21 00:47:04 +00:00
common/perf.cc
common/tar.cc
common/uuid.cc
2023-01-07 04:05:46 +00:00
- elf/arch-alpha.cc
2022-09-27 17:10:15 +00:00
- elf/arch-arm32.cc
- elf/arch-arm64.cc
- elf/arch-i386.cc
2022-11-13 06:22:42 +00:00
- elf/arch-m68k.cc
2023-01-07 04:05:46 +00:00
- elf/arch-ppc32.cc
2022-10-19 16:53:39 +00:00
- elf/arch-ppc64v1.cc
2022-09-27 17:10:15 +00:00
- elf/arch-ppc64v2.cc
- elf/arch-riscv.cc
2022-10-19 16:53:39 +00:00
- elf/arch-s390x.cc
2023-01-07 04:05:46 +00:00
- elf/arch-sh4.cc
2022-09-27 17:10:15 +00:00
- elf/arch-sparc64.cc
elf/arch-x86-64.cc
2023-01-07 04:05:46 +00:00
elf/elf.cc
2023-01-21 00:47:04 +00:00
git-hash.cc
2023-03-17 00:49:05 +00:00
diff --git a/elf/main.cc b/elf/main.cc
index 21da6e75..c2cac979 100644
--- a/elf/main.cc
+++ b/elf/main.cc
@@ -394,11 +394,6 @@ int elf_main(int argc, char **argv) {
2023-01-07 04:05:46 +00:00
if (ctx.arg.emulation.empty())
2022-09-27 17:10:15 +00:00
ctx.arg.emulation = deduce_machine_type(ctx, file_args);
- // Redo if -m is not x86-64.
2023-01-07 04:05:46 +00:00
- if constexpr (is_x86_64<E>)
- if (ctx.arg.emulation != X86_64::target_name)
2022-10-19 16:53:39 +00:00
- return redo_main<E>(argc, argv, ctx.arg.emulation);
2022-09-27 17:10:15 +00:00
-
Timer t_all(ctx, "all");
install_signal_handler();
2022-12-27 02:28:51 +00:00
--
2023-03-17 00:49:05 +00:00
2.40.0
2022-12-27 02:28:51 +00:00