Lines Matching +full:configure +full:- +full:args
3 set -e
9 gtkdocize --docdir libkmod/docs || touch libkmod/docs/gtk-doc.make
10 autoreconf --force --install --symlink
13 echo $(cd "$1/$(gcc -print-multi-os-directory)"; pwd)
16 args="\
17 --prefix=/usr \
18 --sysconfdir=/etc \
19 --libdir=$(libdir /usr/lib) \
22 if [ -f "$topdir/.config.args" ]; then
23 args="$args $(cat $topdir/.config.args)"
26 if [ ! -L /bin ]; then
27 args="$args \
28 --with-rootprefix= \
29 --with-rootlibdir=$(libdir /lib) \
36 --enable-debug \
37 --enable-python \
38 --with-zstd \
39 --with-xz \
40 --with-zlib \
41 --with-openssl \
46 $topdir/configure CFLAGS='-g -O2' $args $hackargs "$@"
50 $topdir/configure CFLAGS='-g -Og' $args "$@"
54 $topdir/configure CC=clang CXX=clang++ $args "$@"
58 … $topdir/configure CFLAGS='-g -O2 -Wsuggest-attribute=pure -Wsuggest-attribute=const' $args "$@"
62 scan-build $topdir/configure CFLAGS='-g -O0 -std=gnu11' $args "$@"
63 scan-build make
66 echo "----------------------------------------------------------------"
68 echo "----------------------------------------------------------------"
70 echo "$topdir/configure CFLAGS='-g -O2' $args"
75 echo "$topdir/configure CFLAGS='-g -O2' $args $hackargs"