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

Fix linkage of pthreads in gcc

parent db5d99ee
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ function recipe_build { ...@@ -26,7 +26,7 @@ function recipe_build {
ln -sf "$sysroot/include" "$sysroot/usr/include" ln -sf "$sysroot/include" "$sysroot/usr/include"
ln -sf "$sysroot/lib" "$sysroot/usr/lib" ln -sf "$sysroot/lib" "$sysroot/usr/lib"
export LIBS='-lpthread' export LIBS='-Wl,--whole-archive -lpthread -Wl,--no-whole-archive'
./configure \ ./configure \
--host=${HOST} \ --host=${HOST} \
--target=${HOST} \ --target=${HOST} \
......
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