mirror of
https://gitee.com/openharmony/third_party_libnl
synced 2024-12-12 13:19:25 +00:00
16 lines
258 B
Bash
Executable File
16 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
CFLAGS="-Werror -Wall -Wdeclaration-after-statement"
|
|
|
|
if [ "$CC" = "clang" ]; then
|
|
CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument -Wno-error=unused-function"
|
|
fi
|
|
|
|
export CFLAGS
|
|
./autogen.sh
|
|
./configure
|
|
make -j 5
|
|
make -j 5 check
|