AMDfasl.sh 313 B

12345678910111213141516
  1. #! /bin/bash -v
  2. # This tries to make a PSL compiler that will generate FASL files, ie
  3. # it should support the idiom
  4. # (faslout 'foo) (dskin "file") (faslend)
  5. # and create a file called "foo.b".
  6. make psl OPT="-O0 -g"
  7. script AMDfasl.log <<XXX
  8. ./vsl xxxfasl.lsp -Dmachine=AMD64_ext -o AMDfasl.img
  9. exit $?
  10. XXX