-
Notifications
You must be signed in to change notification settings - Fork 10
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
Align build requirements with latest ndn-cxx + misc cleanups #23
Conversation
wscript
Outdated
boost_libs = ['system'] | ||
boost_libs = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boost.System is header-only since 1.69, no need to link to the compiled library anymore (which is just a compat stub now)
@@ -32,7 +33,7 @@ def options(opt): | |||
help='Build unit tests') | |||
|
|||
optgrp.add_option('--with-compression', action='store_true', default=False, | |||
dest='with_compression', help='Build with state vector compression extension') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dest
is redundant in this case
vnum=VERSION, | ||
cnum=VERSION, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vnum
and cnum
are meaningful only for shared libraries, hence moved to shlib
below.
Please ignore the CI failure with clang 18, it's unrelated (https://redmine.named-data.net/issues/5300) |
Guess I'll have to make do with just 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 and 17 😛 |
No description provided.