Add toolchain_test.py to naclbuild.py
[nacl-build.git] / clean-glibc-libs
blob497d0f3be5c416917945036c65adce65329c0603
1 #!/bin/bash
3 # Remove libraries from glibc build tree to force them to be re-linked,
4 # e.g. when linker scripts are changed, because the dependency on linker
5 # scripts is not tracked.
7 find glibc/build -name "*.so" -exec rm -v '{}' ';'