-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
scc: migrate to Conan v2 #18715
scc: migrate to Conan v2 #18715
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I am working on this, but still work to do. This PR is beyond 2.0 support, because it is fixing the previous recursive installation of packages hardcoded in scc CMakeLists.txt. I have hit the issue that |
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Conan v1 pipeline ✔️All green in build 1 (
Conan v2 pipeline ✔️
All green in build 1 (
|
template<typename T> | ||
inline void vcdEmitValueChangeReal(FPTR os, std::string const& handle, unsigned bits, T val){ | ||
- auto buf = fmt::format("r{:.16g} {}\n", val, handle); | ||
+ auto buf = fmt::format("r{:.16g} {}\n", static_cast<double>(val), handle); |
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.
This has been merged upstream in Minres/SystemC-Components#51 and released in https://github.com/Minres/SystemC-Components/releases/tag/2024.03
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.
Thanks! Feel free to add the new version in a follow-up PR :)
No description provided.