mirror of
https://github.com/nfstream/nfstream.git
synced 2026-05-19 07:54:25 +00:00
fix lib dir on arm 64
This commit is contained in:
parent
26e447efdd
commit
53530486ba
1 changed files with 7 additions and 3 deletions
|
|
@ -34,9 +34,13 @@ build_libndpi() {
|
|||
cd nDPI
|
||||
gcc --version
|
||||
./autogen.sh
|
||||
CFLAGS="-I/tmp/nfstream_build/usr/local/include"
|
||||
LDFLAGS="-L/tmp/nfstream_build/usr/local/lib"
|
||||
CFLAGS=${CFLAGS} LDFLAGS=${LDFLAGS} ./configure && CFLAGS=${CFLAGS} LDFLAGS=${LDFLAGS} make
|
||||
CFLAGS='-I/tmp/nfstream_build/usr/local/include' \
|
||||
LDFLAGS='-L/tmp/nfstream_build/usr/local/lib' \
|
||||
./configure \
|
||||
--prefix=/tmp/nfstream_build/usr \
|
||||
--libdir=/tmp/nfstream_build/usr/lib \
|
||||
--enable-static --disable-shared
|
||||
make
|
||||
make DESTDIR=/tmp/nfstream_build install
|
||||
make clean
|
||||
cd ..
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue