From 92fb3fdc01aac2bab40c5fda631af1198e588494 Mon Sep 17 00:00:00 2001 From: Kirill Kirilenko Date: Mon, 19 Aug 2024 20:09:45 +0300 Subject: [PATCH] Disable use of sysroot to avoid conflicts on non-Debian based systems. --- cmake/AddWebRTCTarget.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/AddWebRTCTarget.cmake b/cmake/AddWebRTCTarget.cmake index 660705f..6e3b6cb 100644 --- a/cmake/AddWebRTCTarget.cmake +++ b/cmake/AddWebRTCTarget.cmake @@ -1,6 +1,6 @@ function(add_webrtc_target SOURCE_DIR BUILD_DIR) - set(GEN_ARGS_COMMON "target_cpu=\"${TARGET_CPU}\" target_os=\"${TARGET_OS}\" is_component_build=false use_gold=false use_custom_libcxx=false use_custom_libcxx_for_host=false use_rtti=true treat_warnings_as_errors=false rtc_include_tests=false rtc_build_tools=false rtc_build_examples=false rtc_enable_protobuf=false") + set(GEN_ARGS_COMMON "target_cpu=\"${TARGET_CPU}\" target_os=\"${TARGET_OS}\" is_component_build=false use_gold=false use_sysroot=false use_custom_libcxx=false use_custom_libcxx_for_host=false use_rtti=true treat_warnings_as_errors=false rtc_include_tests=false rtc_build_tools=false rtc_build_examples=false rtc_enable_protobuf=false") if (USE_CLANG) set(GEN_ARGS_COMMON "${GEN_ARGS_COMMON} is_clang=true use_lld=true")