Replies: 2 comments
-
Using |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For non-msvc compilers (gcc/clang), order of links might be important:
if A depends on B which depends on C
we should have something like:
(several entries is even allowed for cycle).
In premake, we have 3 kinds of link options:
links("project")
links("external_lib")
linkoptions("extra option")
I don't find a way to order
links
againstlinkoptions
.Generators use one block after the others, (and no order is more correct than the other BTW).
I have basically
Using either gmake2/codelite action, the link fails.
As work around, I end up with ugly:
Is there currently a better way?
Beta Was this translation helpful? Give feedback.
All reactions