From 8100ec2cd11d99952a56e1961dcdc0bfdaa74183 Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Sun, 12 Jun 2016 00:11:08 -0700 Subject: [PATCH] Fix libgcc broken lib path Summary: current libgcc lib path is broken, update it and make sure the new one exists Test Plan: verify that the new path exists make check -j64 Reviewers: yiwu, sdong, andrewkr Reviewed By: andrewkr Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D59535 --- build_tools/fbcode_config.sh | 2 +- build_tools/fbcode_config4.8.1.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/fbcode_config.sh b/build_tools/fbcode_config.sh index 3f35a8ee6..1c2416c91 100644 --- a/build_tools/fbcode_config.sh +++ b/build_tools/fbcode_config.sh @@ -14,7 +14,7 @@ CFLAGS="" # libgcc LIBGCC_INCLUDE="$LIBGCC_BASE/include" -LIBGCC_LIBS=" -L $LIBGCC_BASE/libs" +LIBGCC_LIBS=" -L $LIBGCC_BASE/lib" # glibc GLIBC_INCLUDE="$GLIBC_BASE/include" diff --git a/build_tools/fbcode_config4.8.1.sh b/build_tools/fbcode_config4.8.1.sh index 668adf92b..d338bf6b6 100644 --- a/build_tools/fbcode_config4.8.1.sh +++ b/build_tools/fbcode_config4.8.1.sh @@ -9,7 +9,7 @@ source "$BASEDIR/dependencies_4.8.1.sh" # location of libgcc LIBGCC_INCLUDE="$LIBGCC_BASE/include" -LIBGCC_LIBS=" -L $LIBGCC_BASE/libs" +LIBGCC_LIBS=" -L $LIBGCC_BASE/lib" # location of glibc GLIBC_INCLUDE="$GLIBC_BASE/include"