mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
e88f2f375e
dsymutil should by default generate dSYM bundles which are filesystem hierarchies containing the debug info and an additional Info.plist. Currently llvm-dsymutil emits raw binaries containing the debug info. This is what we call the 'flat mode'. Add a -f/-flat option that is supposed to enable that flat mode, but don't wire it for now, only pass it to the tests that will need it to stay functional once we do bundle generation by default. This basically makes this commit NFC and removes the noise from the actual commit that adds support for bundle generation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244269 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
373 B
Plaintext
14 lines
373 B
Plaintext
# REQUIRES: object-emission
|
|
# RUN: llvm-dsymutil -f -oso-prepend-path=%p/../Inputs -y %s -o - 2>&1 | FileCheck %s
|
|
|
|
---
|
|
triple: 'armv7-apple-darwin'
|
|
objects:
|
|
- filename: libfat-test.a(fat-test.o)
|
|
symbols:
|
|
- { sym: _armv7_var, objAddr: 0x0, binAddr: 0x1000, size: 0x4 }
|
|
...
|
|
|
|
# CHECK: libfat-test.a(fat-test.o): No object file for requested architecture
|
|
|