You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Makefile says LIBRARY_TYPE ?= static, but when I run it against installed libraries I get
==============Messages for file: /usr/local/share/gpr/libadalang.gpr
16. BUILD : BUILD_KIND := external("LIBADALANG_LIBRARY_TYPE", external("LIBRARY_TYPE", "relocatable"));
|
>>> value "static" is illegal for typed string "build"
==============Messages for file: /usr/local/share/gpr/langkit_support.gpr
14. BUILD : BUILD_KIND := external("LANGKIT_SUPPORT_LIBRARY_TYPE", external("LIBRARY_TYPE", "relocatable"));
|
>>> value "static" is illegal for typed string "build"
gprbuild: "src/build.gpr" processing failed
This may, of course, be a failure on my part to install those libraries with all the library types- what’s expected?
Also, the install-strip target can strip the whole of the target bin/ directory, which would be rude if that directory was a public one, e.g. /usr/local/bin. Could there be a plain install target that doesn’t strip? (and why strip, anyway?)
The text was updated successfully, but these errors were encountered:
The Makefile says
LIBRARY_TYPE ?= static
, but when I run it against installed libraries I getThis may, of course, be a failure on my part to install those libraries with all the library types- what’s expected?
Also, the
install-strip
target can strip the whole of the targetbin/
directory, which would be rude if that directory was a public one, e.g./usr/local/bin
. Could there be a plaininstall
target that doesn’t strip? (and why strip, anyway?)The text was updated successfully, but these errors were encountered: