File tree 3 files changed +3
-2
lines changed
tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1280,7 +1280,7 @@ pub fn llvm_has_libzstd(config: &Config) -> bool {
1280
1280
let stderr = String :: from_utf8 ( output. stderr ) . ok ( ) ?;
1281
1281
let zstd_available = !stderr. contains ( "LLVM was not built with LLVM_ENABLE_ZSTD" ) ;
1282
1282
1283
- // We don't partiCOMPILETEST_ENABLE_OPT_DIST_TESTScularly need to clean the link up (so the previous commands could fail
1283
+ // We don't particularly need to clean the link up (so the previous commands could fail
1284
1284
// in theory but won't in practice), but we can try.
1285
1285
std:: fs:: remove_file ( lld_symlink_path) . ok ( ) ?;
1286
1286
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ llvm-config = "{llvm_config}"
103
103
"tests/incremental" ,
104
104
"tests/mir-opt" ,
105
105
"tests/pretty" ,
106
+ "tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu" ,
106
107
"tests/ui" ,
107
108
"tests/crashes" ,
108
109
] ;
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ fn get_glibc_symbols(file: &Path) -> Vec<GlibcSymbol> {
81
81
82
82
// Uses llvm-objdump, because implementing this using the `object` crate is quite complicated.
83
83
llvm_objdump ( )
84
- . arg ( "-T " )
84
+ . arg ( "--dynamic-syms " )
85
85
. arg ( file)
86
86
. run ( )
87
87
. stdout_utf8 ( )
You can’t perform that action at this time.
0 commit comments