Skip to content

Commit

Permalink
Only link to non-Boost dependencies when link=static (refs #47)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Dec 23, 2020
1 parent 7a80782 commit 7b3fc73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boost-install.jam
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ rule generate-cmake-variant- ( target : sources * : properties * )

.info " deps3=" $(deps3) ;

if $(deps3)
if $(deps3) && $(link) = static
{
print.text

Expand Down

4 comments on commit 7b3fc73

@ElBigo
Copy link

@ElBigo ElBigo commented on 7b3fc73 Jan 7, 2021

Choose a reason for hiding this comment

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

Hello,
I have the same issue after updating boost 1.75 and I don't know how to use this fix.
Because I am not seeing the "boost-install.jam" file in order to add the new line and delete the old one.
I am working on a project in which i can't go forward because of this bug.
thank you for your help

@pdimov
Copy link
Member Author

@pdimov pdimov commented on 7b3fc73 Jan 7, 2021

Choose a reason for hiding this comment

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

boost-install.jam is in directory tools/boost_install.

@T0117358
Copy link

Choose a reason for hiding this comment

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

Hi @pdimov I can't find the boost-install.jam file and have no idea where is tools/boost_install. Could you give me more information? Thanks in advance

@n-loureiro
Copy link

Choose a reason for hiding this comment

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

@T0117358 did you manage to solve the problem? I'm having the same issue.

Please sign in to comment.