Skip to content

Commit

Permalink
jamfiles: Copy runtime libraries for unified executables
Browse files Browse the repository at this point in the history
* sources/jamfiles/posix-build.jam (rule DylanLibrary): Ensure that
  "batteries included" runtime shared libraries are copied into the
  lib/ directory when unified exectables are built.
  • Loading branch information
housel committed May 1, 2024
1 parent 2bd5d36 commit 45f3db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/jamfiles/posix-build.jam
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ rule DylanLibrary image : version {
local _rtlib = $(_i:D=) ;
MakeLocate $(_rtlib) : $(LIBDIR) ;
File $(_rtlib) : $(_i) ;
Depends $(_dll) : $(_rtlib) ;
Depends $(_dll) $(_ulib) : $(_rtlib) ;
}
}

Expand Down

0 comments on commit 45f3db4

Please sign in to comment.