Regenerate xperfecthashN.lisp-expr from scratch via build-all-cores
[sbcl.git] / verify-header-parsing.sh
blobd367731b3f4d423d1aca42155fb9b13dbc3da655
1 #!/bin/sh
3 # This script is not part of the build, but running it tells you
4 # whether each genesis headers can be included without fussing
5 # around with all sorts of other headers.
6 for i in src/runtime/genesis/*.h
7 do
8 echo '#include "'$i'"' > tmp.c
9 cc -Isrc/runtime -c tmp.c
10 done