-
Notifications
You must be signed in to change notification settings - Fork 170
[mir] Disable nncc_common option #15256
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
Conversation
This will disable nncc_common option to prevent _GLIBCXX17_DEPRECATED warning as error. ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
1909ea5 to
ada5471
Compare
shs-park
left a comment
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.
I left a question,
PTAL
=)
| target_link_libraries(mir PUBLIC adtidas) | ||
| target_link_libraries(mir PRIVATE nncc_common) | ||
| # to prevent _GLIBCXX17_DEPRECATED warning as error | ||
| # target_link_libraries(mir PRIVATE nncc_common) |
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.
Does this mean we don't need nncc_common library anymore?
Is it okay to remove this library?
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.
it is not like "not needed anymore" but it's like "cannot use this option anymore".
nncc_common is to set strict build, like treating warning as error option.
to fix the issue correctly is not to use deprecated std::iterator,
but as mir and nncc modules are not maintained and not used anymore,
and I personally don't know the codes, I'm nust avoiding the problem.
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.
I neither know those codes. Maybe we can remove mir and nnc if they are not maintained anymore?
shs-park
left a comment
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.
LGTM!
=)
jinevening
left a comment
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.
LGTM
This will disable nncc_common option to prevent _GLIBCXX17_DEPRECATED warning as error.
ONE-DCO-1.0-Signed-off-by: SaeHie Park [email protected]