Werner's Miscellanea
Sign in or create your account | Project List | Help
Werner's Miscellanea Git Source Tree
Root/
| 1 | #!/bin/sh |
| 2 | # |
| 3 | # Source this in .bash_profile, before running build_bitstream.sh, etc. |
| 4 | # |
| 5 | # The setup process in /opt/Xilinx/13.3/ISE_DS/settings64.sh |
| 6 | # is an ode to bloat. Below are the things we actually need from it. |
| 7 | # |
| 8 | |
| 9 | x=/opt/Xilinx/13.3/ISE_DS |
| 10 | |
| 11 | PATH=$PATH:$x/common/bin/lin64 |
| 12 | PATH=$PATH:$x/ISE/bin/lin64 |
| 13 | PATH=$PATH:$x/ISE/sysgen/util |
| 14 | |
| 15 | if [ "$LD_LIBRARY_PATH" ]; then |
| 16 | LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$x/common/lib/lin64 |
| 17 | else |
| 18 | LD_LIBRARY_PATH=$x/common/lib/lin64 |
| 19 | fi |
| 20 | LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$x/ISE/lib/lin64 |
| 21 | |
| 22 | XILINX=$x/ISE |
| 23 | |
| 24 | export LD_LIBRARY_PATH XILINX |
| 25 | x= |
| 26 |
Branches:
master
