mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Revert change to linking order arguments
This commit is contained in:
parent
f02c48a909
commit
2f1d415a70
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ compile(Config, AppFile) ->
|
|||
case needs_link(SoName, NewBins) of
|
||||
true ->
|
||||
AllBins = string:join(NewBins ++ ExistingBins, " "),
|
||||
rebar_utils:sh_failfast(?FMT("$CC $LDFLAGS $DRIVER_LDFLAGS ~s -o ~s", [AllBins, SoName]), Env);
|
||||
rebar_utils:sh_failfast(?FMT("$CC ~s $LDFLAGS $DRIVER_LDFLAGS -o ~s", [AllBins, SoName]), Env);
|
||||
false ->
|
||||
?INFO("Skipping relink of ~s\n", [SoName]),
|
||||
ok
|
||||
|
|
Loading…
Reference in a new issue