@@ -211,7 +211,7 @@ fn rustc<'a, 'cfg>(
211
211
// If we are a binary and the package also contains a library, then we
212
212
// don't pass the `-l` flags.
213
213
let pass_l_flag = unit. target . is_lib ( ) || !unit. pkg . targets ( ) . iter ( ) . any ( |t| t. is_lib ( ) ) ;
214
- let pass_link_args = unit. target . is_cdylib ( ) ;
214
+ let pass_cdylib_link_args = unit. target . is_cdylib ( ) ;
215
215
let do_rename = unit. target . allows_underscores ( ) && !unit. mode . is_any_test ( ) ;
216
216
let real_name = unit. target . name ( ) . to_string ( ) ;
217
217
let crate_name = unit. target . crate_name ( ) ;
@@ -258,7 +258,7 @@ fn rustc<'a, 'cfg>(
258
258
& build_state,
259
259
& build_deps,
260
260
pass_l_flag,
261
- pass_link_args ,
261
+ pass_cdylib_link_args ,
262
262
current_id,
263
263
) ?;
264
264
add_plugin_deps ( & mut rustc, & build_state, & build_deps, & root_output) ?;
@@ -348,7 +348,7 @@ fn rustc<'a, 'cfg>(
348
348
build_state : & BuildMap ,
349
349
build_scripts : & BuildScripts ,
350
350
pass_l_flag : bool ,
351
- pass_link_args : bool ,
351
+ pass_cdylib_link_args : bool ,
352
352
current_id : PackageId ,
353
353
) -> CargoResult < ( ) > {
354
354
for key in build_scripts. to_link . iter ( ) {
@@ -370,7 +370,7 @@ fn rustc<'a, 'cfg>(
370
370
rustc. arg ( "-l" ) . arg ( name) ;
371
371
}
372
372
}
373
- if pass_link_args {
373
+ if pass_cdylib_link_args {
374
374
for arg in output. linker_args . iter ( ) {
375
375
let link_arg = format ! ( "link-arg={}" , arg) ;
376
376
rustc. arg ( "-C" ) . arg ( link_arg) ;
0 commit comments