diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn index 2d69127783..8cd301e806 100644 --- a/webrtc/examples/BUILD.gn +++ b/webrtc/examples/BUILD.gn @@ -389,6 +389,12 @@ if (is_linux || is_win) { "-Wno-sign-compare", ] } + if (is_linux && target_cpu == "x86") { + cflags = [ + # Needed to compile on Linux 32-bit. + "-Wno-sentinel", + ] + } } rtc_executable("peerconnection_client") { @@ -445,6 +451,7 @@ if (is_linux || is_win) { deps += [ "//third_party/jsoncpp" ] } } + rtc_executable("peerconnection_server") { sources = [ "peerconnection/server/data_socket.cc",