From 2f222ec937c9dee974b642fe1261c9d9de4d1104 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Fri, 5 Jul 2019 23:08:11 +0200 Subject: [PATCH] fixed missing static glibc version --- third_party/build_breakpad.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/build_breakpad.sh b/third_party/build_breakpad.sh index 2600858..d824691 100755 --- a/third_party/build_breakpad.sh +++ b/third_party/build_breakpad.sh @@ -19,7 +19,7 @@ check_err_exit ${library_path} "Failed to enter build directory!" ../configure check_err_exit ${library_path} "Failed to configure" -make CXXFLAGS="-std=c++11 -I../../boringssl/include/ ${CXX_FLAGS}" CFLAGS="${C_FLAGS}" ${MAKE_OPTIONS} +make CXXFLAGS="-std=c++11 -I../../boringssl/include/ ${CXX_FLAGS} -static-libgcc -static-libstdc++" CFLAGS="${C_FLAGS}" ${MAKE_OPTIONS} check_err_exit ${library_path} "Failed to build" sudo make install check_err_exit ${library_path} "Failed to install"