From 05e8ccc040d03cb354acd3f11b51391c4e54caef Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Sat, 22 Dec 2018 08:29:21 -0700 Subject: [PATCH] Build gcc with lpthread --- recipes/gcc/recipe.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh index c091a3d61..c9485d3ef 100644 --- a/recipes/gcc/recipe.sh +++ b/recipes/gcc/recipe.sh @@ -21,10 +21,12 @@ function recipe_build { cp config.sub mpfr/config.sub cp -f config.sub mpc/config.sub - sysroot="$(realpath "${PWD}/../sysroot")" + sysroot="$(realpath ../sysroot)" mkdir -p "$sysroot/usr" ln -sf "$sysroot/include" "$sysroot/usr/include" ln -sf "$sysroot/lib" "$sysroot/usr/lib" + + export LIBS='-lpthread' ./configure \ --host=${HOST} \ --target=${HOST} \ -- GitLab