Skip to content

Commit 1ee8876

Browse files
committedApr 4, 2019
Verify that Android targets generate DWARF 4 by default.
Summary: In the future, Android releases will support DWARF 5, but we need to ensure that older targets only have DWARF 4 generated for them. This patch inserts that verification for all Android releases now. The patch also fixes 2 minor mistakes (a mistakenly moved RUN line, and the missing G_DWARF2 check label). Reviewers: aprantl Reviewed By: aprantl Subscribers: chh, pirama, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D60238 llvm-svn: 357713
1 parent c8490cf commit 1ee8876

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎clang/test/Driver/debug-options.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@
1717
// RUN: %clang -### -c -glldb %s -target x86_64-linux-gnu 2>&1 \
1818
// RUN: | FileCheck -check-prefix=G -check-prefix=G_LLDB %s
1919
// RUN: %clang -### -c -gsce %s -target x86_64-linux-gnu 2>&1 \
20+
// RUN: | FileCheck -check-prefix=G -check-prefix=G_SCE %s
21+
22+
// Android.
23+
// Android should always generate DWARF4.
24+
// RUN: %clang -### -c -g %s -target arm-linux-androideabi 2>&1 \
25+
// RUN: | FileCheck -check-prefix=G -check-prefix=G_DWARF4 %s
2026

2127
// Darwin.
22-
// RUN: | FileCheck -check-prefix=G -check-prefix=G_SCE %s
2328
// RUN: %clang -### -c -g %s -target x86_64-apple-darwin 2>&1 \
2429
// RUN: | FileCheck -check-prefix=G_STANDALONE \
2530
// RUN: -check-prefix=G_DWARF2 \
@@ -272,6 +277,7 @@
272277
//
273278
// G_STANDALONE: "-cc1"
274279
// G_STANDALONE: "-debug-info-kind=standalone"
280+
// G_DWARF2: "-dwarf-version=2"
275281
// G_DWARF4: "-dwarf-version=4"
276282
//
277283
// G_GDB: "-debugger-tuning=gdb"

0 commit comments

Comments
 (0)
Please sign in to comment.