Advertisement
Guest User

Untitled

a guest
Jun 16th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. #!/bin/bash
  2. set -x  # trace
  3. set -e  # exit on non-zero result
  4.  
  5. LD_LIBRARY_PATH="\
  6. /home/spearman/rs/remote/rust/build/\
  7. x86_64-unknown-linux-gnu/stage0-rustc/\
  8. x86_64-unknown-linux-gnu/release/deps/\
  9. :/home/spearman/rs/remote/rust/build/\
  10. x86_64-unknown-linux-gnu/stage0-std/\
  11. x86_64-unknown-linux-gnu/release/deps/\
  12. :/home/spearman/rs/remote/rust/build/\
  13. x86_64-unknown-linux-gnu/stage0-test/\
  14. x86_64-unknown-linux-gnu/release/deps/" \
  15.   /home/spearman/rs/remote/rust/build/x86_64-unknown-linux-gnu/\
  16. stage0-rustc/x86_64-unknown-linux-gnu/release/rustc \
  17.     src/main.rs \
  18.     -L/home/spearman/rs/remote/rust/build/x86_64-unknown-linux-gnu/\
  19. stage1-std/x86_64-unknown-linux-gnu/release/
  20.  
  21. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement