2

I'm currently working on a project that students can hand in their xilinx projects via e-mail and i will Synthesis, Place and Route and generate a bitstream which then should be uploaded to an FPGA.

So first things first. I installed the ISE Tools on my Linux machine and now i'm trying to run xilinx's commands from the command line. But when i'm trying to run xst it says:

-bash: /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin/xst: No such file or directory

Does anyone have experience with creating scripts to automate the xilinx sythesis processes? Appreciate any help :)

nablahero

nablahero
  • 143
  • 1
  • 13
  • 1
    Xilinx has a guide for command line tools. Have you sourced the settings64.sh file from `/opt/Xilinx/14.7/ISE_DS/`? There are also tools to support command line synthesis flows -> `xflow`. – Paebbels Jan 05 '15 at 10:59
  • That worked for me. Thanks a lot. Now i can start working :) – nablahero Jan 06 '15 at 14:31

1 Answers1

1

I had similar issue - problem probably is you are starting 32bit version of binaries on 64bit system. Try:

/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/xst

Honza
  • 974
  • 10
  • 18