• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3# Newer versions of llvm-symbolizer require libxml2 themselves. Running
4# a test program with LD_LIBRARY_PATH set to .libs makes llvm-symbolizer
5# pick up the tested development version of libxml2 which breaks
6# completely if the build is instrumented with ASan. This wrapper script
7# invokes llvm-symbolizer with an empty LD_LIBRARY_PATH.
8
9LD_LIBRARY_PATH='' llvm-symbolizer "$@"
10