-
-
Notifications
You must be signed in to change notification settings - Fork 181
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
[WIP] Update deps libsdptransform and Catch2 #151
base: v3
Are you sure you want to change the base?
Conversation
- Update libsdptransform to v1.2.10 - Update Catch2 to v3.2.1
I don't know what can cause that error... I've tested the branch and it does not compile. this change is needed: --- a/test/src/tests.cpp
+++ b/test/src/tests.cpp
@@ -17,8 +17,8 @@ int main(int argc, char* argv[])
// Build a new parser on top of Catch.
// clang-format off
auto cli = session.cli()
- | Catch::clara::Opt(logLevelStr, "debug|warn|error|none")["-L"]["--log-level"]("libmediasoupclient log level (default: none)")
- | Catch::clara::Opt(webrtcLogLevelStr, "verbose|info|warn|error|none")["-W"]["--webrtc-log-level"]("libwebrtc log level (default: none)");
+ | Catch::Clara::Opt(logLevelStr, "debug|warn|error|none")["-L"]["--log-level"]("libmediasoupclient log level (default: none)")
+ | Catch::Clara::Opt(webrtcLogLevelStr, "verbose|info|warn|error|none")["-W"]["--webrtc-log-level"]("libwebrtc log level (default: none)"); Then it compiles, but few test fail and there is a segfault: I can look at it but probably not before the end of the year. |
@jmillan are you using this line? gn gen out/m94 --args='is_debug=false is_component_build=false is_clang=true rtc_include_tests=false rtc_use_h264=true use_rtti=true mac_deployment_target="10.11" use_custom_libcxx=false' |
yes, the very same from our docs. |
So now I have a different problem running
Yes, it says:
It would be great to know what "install ninja to your project using DEPS" means... |
I've installed |
Not sure if relevant, but I have this:
Xcode doesn't seem to allow installing any other macosx SDK, so I assume this is the right one. |
My info:
|
Fixes #140