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 Jun 18, 2023
1 parent 81ab1f0 commit f087b02
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 f087b02

Please sign in to comment.