[PATCH] D96565: [lld-macho] Fix cpuSubtype for non-x86_64 archs

Jez Ng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 11 16:56:55 PST 2021


int3 created this revision.
int3 added a reviewer: lld-macho.
Herald added a project: lld-macho.
int3 requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

dyld on iOS will complain if the LIB64 bit is set.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D96565

Files:
  lld/MachO/SyntheticSections.cpp
  lld/test/MachO/header.s


Index: lld/test/MachO/header.s
===================================================================
--- /dev/null
+++ lld/test/MachO/header.s
@@ -0,0 +1,18 @@
+# RUN: rm -rf %t && mkdir -p %t
+# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/test.o
+# RUN: %lld -arch x86_64 -platform_version macos 10.5.0 11.0 -o %t/x86-64-executable %t/test.o
+# RUN: %lld -arch arm64 -o %t/arm64-executable %t/test.o
+# RUN: %lld -arch x86_64 -dylib -o %t/x86-64-dylib %t/test.o
+# RUN: %lld -arch arm64  -dylib -o %t/arm64-dylib %t/test.o
+
+# RUN: llvm-objdump --macho --all-headers %t/x86-64-executable | FileCheck %s -DCAPS=LIB64
+# RUN: llvm-objdump --macho --all-headers %t/arm64-executable | FileCheck %s -DCAPS=0x00
+# RUN: llvm-objdump --macho --all-headers %t/x86-64-dylib | FileCheck %s -DCAPS=0x00
+# RUN: llvm-objdump --macho --all-headers %t/arm64-dylib | FileCheck %s -DCAPS=0x00
+
+# CHECK:      magic        cputype cpusubtype  caps    filetype
+# CHECK-NEXT: MH_MAGIC_64  {{.*}}         ALL  [[CAPS]]   {{.*}}
+
+.globl _main
+_main:
+  ret
Index: lld/MachO/SyntheticSections.cpp
===================================================================
--- lld/MachO/SyntheticSections.cpp
+++ lld/MachO/SyntheticSections.cpp
@@ -53,11 +53,23 @@
   return sizeof(MachO::mach_header_64) + sizeOfCmds + config->headerPad;
 }
 
+static uint32_t cpuSubtype() {
+  uint32_t subtype = target->cpuSubtype;
+
+  if (config->outputType == MachO::MH_EXECUTE && !config->staticLink &&
+      target->cpuSubtype == MachO::CPU_SUBTYPE_X86_64_ALL &&
+      config->platform.kind == MachO::PlatformKind::macOS &&
+      config->platform.minimum >= VersionTuple(10, 5))
+    subtype |= MachO::CPU_SUBTYPE_LIB64;
+
+  return subtype;
+}
+
 void MachHeaderSection::writeTo(uint8_t *buf) const {
   auto *hdr = reinterpret_cast<MachO::mach_header_64 *>(buf);
   hdr->magic = MachO::MH_MAGIC_64;
   hdr->cputype = target->cpuType;
-  hdr->cpusubtype = target->cpuSubtype | MachO::CPU_SUBTYPE_LIB64;
+  hdr->cpusubtype = cpuSubtype();
   hdr->filetype = config->outputType;
   hdr->ncmds = loadCommands.size();
   hdr->sizeofcmds = sizeOfCmds;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96565.323189.patch
Type: text/x-patch
Size: 2137 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210212/0e88398a/attachment.bin>


More information about the llvm-commits mailing list