From 84535c9062c8f977e0d7c76ade8a3c751982b4d6 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 23 Dec 2020 21:27:32 -0700 Subject: [PATCH] WIP: Add llvm-config libs to gears compilation --- recipes/gears/recipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/gears/recipe.sh b/recipes/gears/recipe.sh index ea1114b4..570139e9 100644 --- a/recipes/gears/recipe.sh +++ b/recipes/gears/recipe.sh @@ -19,7 +19,7 @@ function recipe_prepare { function recipe_build { sysroot="$(realpath ../sysroot)" set -x - "${CXX}" -O2 -I "$sysroot/include" -L "$sysroot/lib" gears.c -o gears -static -lorbital $("${PKG_CONFIG}" --libs glu) -lglapi -lz + "${CXX}" -O2 -I "$sysroot/include" -L "$sysroot/lib" gears.c -o gears -static -lorbital $("${PKG_CONFIG}" --libs glu) $("${TARGET}-llvm-config" --libs all) -lz set +x skip=1 }