Results 1 to 1 of 1
Hi,
I am trying to get my Spartan 3e dev kit work on Slackware64 13.37. I downloaded and extracted the tar package (Xilinx_ISE_DS_Lin_13.2_O.61xd.0.0.tar) and when I try to execute setup ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-25-2011 #1Just Joined!
- Join Date
- Jul 2011
- Posts
- 5
Xilinix ISE 13.2 on Slack64 13.37
Hi,
I am trying to get my Spartan 3e dev kit work on Slackware64 13.37. I downloaded and extracted the tar package (Xilinx_ISE_DS_Lin_13.2_O.61xd.0.0.tar) and when I try to execute setup script ;
bash-4.1# ./xsetup
./xsetup: line 32: 2991 Segmentation fault "$setuploc/bin/lin64/xsetup" $*
I get this error. Script itself is this ;
#! /bin/sh
export PATH || exec /bin/sh "$0" $argv
# Get the path to this exec
setuploc=`dirname "$0"`
unset LANG
platform=`uname -s`
# run setup executable depending on different platform
if [ "$platform" = "Linux" ]
then
machineType=`uname -m`; # Get the machine type
if [ "$machineType" = "x86_64" ]
then
# 64 bit
if [ -f "$setuploc/bin/lin64/xsetup" ]
then
"$setuploc/bin/lin64/xsetup" $*
else
echo "Product is not supported on \"$platform $machineType\" platform."
fi
else
if [ -f "$setuploc/bin/lin/xsetup" ]
then
"$setuploc/bin/lin/xsetup" $*
else
echo "Product is not supported on \"$platform $machineType\" platform."
fi
fi
else
echo "Un-supported platform: $platform"
fi
Anyone made it work under Slack64 ? Any guidance is appreciated.
Have a nice day.


Reply With Quote
