mirror of https://github.com/google/oss-fuzz.git
[wget2] Fix order of link libraries (#2059)
This commit is contained in:
parent
2b67387299
commit
b332fd9f75
|
@ -72,7 +72,7 @@ make -j$(nproc)
|
|||
make install
|
||||
|
||||
cd $SRC/libmicrohttpd-*
|
||||
LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
|
||||
LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
|
||||
./configure --prefix=$WGET2_DEPS_PATH --disable-doc --disable-examples --disable-shared --enable-static
|
||||
make -j$(nproc)
|
||||
make install
|
||||
|
@ -85,7 +85,7 @@ cd $SRC/wget2
|
|||
./bootstrap
|
||||
|
||||
# build and run non-networking tests
|
||||
LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
|
||||
LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
|
||||
./configure -C --enable-static --disable-shared --disable-doc --without-plugin-support
|
||||
make clean
|
||||
make -j$(nproc)
|
||||
|
@ -93,7 +93,7 @@ make -j$(nproc) -C unit-tests check
|
|||
make -j$(nproc) -C fuzz check
|
||||
|
||||
# build for fuzzing
|
||||
LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
|
||||
LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
|
||||
./configure -C --enable-fuzzing --enable-static --disable-shared --disable-doc --without-plugin-support
|
||||
make clean
|
||||
make -j$(nproc) -C lib
|
||||
|
|
Loading…
Reference in New Issue