compile_udf.sh 272 字节
Newer Older
S
shenglian zhou 已提交
1 2 3 4 5 6 7 8 9 10
set +e

rm -rf /tmp/udf/libbitand.so /tmp/udf/libsqrsum.so
mkdir -p /tmp/udf
echo "compile udf bit_and and sqr_sum"
gcc -fPIC -shared bit_and.c -o /tmp/udf/libbitand.so
gcc -fPIC -shared sqr_sum.c -o /tmp/udf/libsqrsum.so
echo "debug show /tmp/udf/*.so"
ls /tmp/udf/*.so