Rob Landley 635f1e0391 Work around another gcc bug, where --as-needed breaks libasan. This
dies with a null pointer dereference calling crypt():

gcc -fsanitize=address -static-libasan -xc - -Wl,--as-needed -lcrypt \
  <<<$'#include<crypt.h>\nint main(void){crypt("one", "two");}' &&
  ./a.out
2025-07-02 13:04:51 -05:00
..