-
-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building of static libraries is broken #53
Comments
Also using a staticLibrary package as a dependency does not work as expected. It is not the generated lib that gets integrated in the main package, but all the lib's source files. Thus the lib dependency acts like a sourceLibrary. |
Also true for executable dependencies as pointed out by: Nick Sabalausky |
I think executable dependencies might be a (slightly) different thing than library dependencies, as the same package can have library and application configurations at the same time, which obviously creates a conflict here if both are needed for some reason (not likely, but probably still better to avoid introducing artificial limitations). |
Fixed since 0.9.21. |
See SiegeLord/DAllegro5#13. Building a static library currently uses the same separate compile/link steps as for normal builds. It should just use
-lib
instead and drop the linking stage.The text was updated successfully, but these errors were encountered: