Skip to content
Snippets Groups Projects
Verified Commit 84535c90 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

WIP: Add llvm-config libs to gears compilation

parent 3e708fac
No related branches found
Tags 0.6.0
No related merge requests found
...@@ -19,7 +19,7 @@ function recipe_prepare { ...@@ -19,7 +19,7 @@ function recipe_prepare {
function recipe_build { function recipe_build {
sysroot="$(realpath ../sysroot)" sysroot="$(realpath ../sysroot)"
set -x 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 set +x
skip=1 skip=1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment