Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/hxcpp/Linker.hx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class Linker

if (mRanLib!="")
{
args = [out_name];
args = [mLibDir!=""?mLibDir+"/"+file_name:out_name];
var result = ProcessManager.runCommand("", mRanLib, args, true, true, false, "\x1b[1mRanlib:\x1b[0m " + out_name);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess it would also make sense to change out_name here for consistency, same for line 295

if (result!=0)
{
Expand Down
Loading