Skip to content

Commit

Permalink
add -Wno-unused-function cc option
Browse files Browse the repository at this point in the history
  • Loading branch information
rc5hack authored Oct 26, 2023
1 parent 35b0024 commit 9a2142e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/debian-nginx-ssl-ja3/compile.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash

cd nginx
ASAN_OPTIONS=symbolize=1 ./auto/configure --add-module=/build/nginx-ssl-ja3 --with-http_ssl_module --with-stream_ssl_module --with-debug --with-stream --with-cc-opt="-fsanitize=address -O -fno-omit-frame-pointer" --with-ld-opt="-L/usr/local/lib -Wl,-E -lasan"
ASAN_OPTIONS=symbolize=1 ./auto/configure --add-module=/build/nginx-ssl-ja3 --with-http_ssl_module --with-stream_ssl_module --with-debug --with-stream \
--with-cc-opt="-fsanitize=address -O -fno-omit-frame-pointer -Wno-unused-function" \
--with-ld-opt="-L/usr/local/lib -Wl,-E -lasan"
make
make install
cd -

0 comments on commit 9a2142e

Please sign in to comment.