File tree 2 files changed +4
-9
lines changed
compiler/rustc_codegen_llvm/src/back
tests/ui/rfcs/rfc-2627-raw-dylib
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -128,11 +128,7 @@ impl ArchiveBuilderBuilder for LlvmArchiveBuilderBuilder {
128
128
is_direct_dependency : bool ,
129
129
) -> PathBuf {
130
130
let name_suffix = if is_direct_dependency { "_imports" } else { "_imports_indirect" } ;
131
- let output_path = {
132
- let mut output_path: PathBuf = tmpdir. to_path_buf ( ) ;
133
- output_path. push ( format ! ( "{lib_name}{name_suffix}" ) ) ;
134
- output_path. with_extension ( "lib" )
135
- } ;
131
+ let output_path = tmpdir. join ( format ! ( "{lib_name}{name_suffix}.lib" ) ) ;
136
132
137
133
let target = & sess. target ;
138
134
let mingw_gnu_toolchain = common:: is_mingw_gnu_toolchain ( target) ;
@@ -157,8 +153,7 @@ impl ArchiveBuilderBuilder for LlvmArchiveBuilderBuilder {
157
153
// that loaded but crashed with an AV upon calling one of the imported
158
154
// functions. Therefore, use binutils to create the import library instead,
159
155
// by writing a .DEF file to the temp dir and calling binutils's dlltool.
160
- let def_file_path =
161
- tmpdir. join ( format ! ( "{lib_name}{name_suffix}" ) ) . with_extension ( "def" ) ;
156
+ let def_file_path = tmpdir. join ( format ! ( "{lib_name}{name_suffix}.def" ) ) ;
162
157
163
158
let def_file_content = format ! (
164
159
"EXPORTS\n {}" ,
Original file line number Diff line number Diff line change 3
3
//@ needs-dlltool
4
4
//@ compile-flags: --crate-type lib --emit link
5
5
//@ normalize-stderr-test: "[^ ']*/dlltool.exe" -> "$$DLLTOOL"
6
- //@ normalize-stderr-test: "[^ ]*/foo.def" -> "$$DEF_FILE"
7
- //@ normalize-stderr-test: "[^ ]*/foo.lib" -> "$$LIB_FILE"
6
+ //@ normalize-stderr-test: "[^ ]*/foo.dll_imports. def" -> "$$DEF_FILE"
7
+ //@ normalize-stderr-test: "[^ ]*/foo.dll_imports. lib" -> "$$LIB_FILE"
8
8
//@ normalize-stderr-test: "-m [^ ]*" -> "$$TARGET_MACHINE"
9
9
//@ normalize-stderr-test: "-f [^ ]*" -> "$$ASM_FLAGS"
10
10
//@ normalize-stderr-test: "--temp-prefix [^ ]*/foo.dll" -> "$$TEMP_PREFIX"
You can’t perform that action at this time.
0 commit comments