mirror of
https://github.com/wfjm/w11.git
synced 2026-01-24 11:51:14 +00:00
- document urjtag build (jtag in Ubuntu 16.04 is broken) - add environment sanity wrappers for acroread,awk,firefox to ensure proper operation of vivado under Ubuntu 16.04
14 lines
480 B
Markdown
14 lines
480 B
Markdown
This directory contains wrappers for general system tools called from within
|
|
Xilinx IDE (ISE or Vivado). The wrappers reset the environment used inside the
|
|
IDE to a very basic default environment with
|
|
|
|
unset LD_LIBRARY_PATH
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
|
|
and finally execute the chosen tool via `exec` like
|
|
|
|
exec firefox "$@"
|
|
|
|
This ensures that these tools work properly and don't fail due to conflicting
|
|
library versions.
|