You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Perl and libpcap, there is some usage of link errors that will show up due to -Wl,--no-undefined and -fsanitize=address.
(1)For GCC, I use "-Wl,--no-undefined" and "-fsanitize=address" both, if the linker
fails, add "-lasan" for linker flag.
(2)For Clang Ubuntu, I use "-Wl,--no-undefined" by default. If "-fsanitize=address"
is set, turn off the flag "-Wl,--no-undefined".
For Perl and libpcap, there is some usage of link errors that will show up due to
-Wl,--no-undefined
and-fsanitize=address
.(from google sanitizers issue 380)
The text was updated successfully, but these errors were encountered: