Add main.yml for aarch64 relocations in dSYM output

- Created a new YAML file for aarch64 relocations.
- Set the target triple to 'arm64-apple-darwin'.
- Specified the binary path for the output executable.
- Initialized the relocations list as empty.
This commit is contained in:
2025-08-13 10:02:12 -04:00
parent ef6639035e
commit 2c036ba8bf
4 changed files with 25 additions and 0 deletions

BIN
output/main Executable file

Binary file not shown.

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.main</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

Binary file not shown.

View File

@@ -0,0 +1,5 @@
---
triple: 'arm64-apple-darwin'
binary-path: '/Users/majorlinux/helloworld/output/main'
relocations: []
...