blob: c331ed7f3dc25dc9ee1f2539919313a2c1af9d6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if test "$GCC" != yes ; then
CC="$CC -std"
CFLAGS="-O -ieee"
fi
# tools/thread/thread_test must be run
if test "$GCC" = yes
then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-pthread"
THREAD_LIBS="-lpthread"
fi
|