Achronix_Linux_License_Server.tgz
.
Unzip the downloaded archive (mine is Synplify_2015.09X.zip
) and extract the installers
unzip Synplify_2015.09X.zip cd Synplify_2015.09X ./SynopsysInstaller_oem_v3.2.run -dir ./
Install 'csh' if needed
sudo apt-get install csh
Run the installer and follow the on-screen guide
./installer
Now run synplify_pro ($INSTALLATION_PATH/bin/synplify_pro
) and it is expected to see complains about unable to get license.
Extract the license server executables (In the previous Synplify_2015.09X
directory),
tar xvzpf Synopsys_Linux_License_Server.tar.gz
Edit the license file received from Achronix (mine is synplify.lic
) as following,
SERVER hostname1 ur_mac_address 27020
, change the hostname1
to your hostname (Type hostname
in terminal)VENDOR snpslmd /path/to/snpslmd
, change the path to Synplify_2015.09X/license_server/snpslmd
Set these two variables (maybe in your ~/.bashrc
)
export LM_LICENSE_FILE=$PATH_TO_THE_LICENSE_FILE_synplify.lic:$LM_LICENSE_FILE export SNPSLMD_LICENSE_FILE=27020@$YOUR_HOSTNAME:$SNPSLMD_LICENSE_FILE
Run the license server and you should not see any error message.
Synplify_2015.09X/license_server/lmgrd -c $PATH_TO_THE_LICENSE_FILE_synplify.lic
Now you should be able to run synplify_pro successfully.
Extract the downloaded ACE archive (mine is ACE_6.0.3_Linux.tgz
), the extracted directory (mine is Achronix-linux
) contains all the executables and libraries
tar xvzpf ACE_6.0.3_Linux.tgz
Extract the license server
tar xvzpf Achronix_Linux_License_Server.tgz
Export this variable (maybe in your ~/.bashrc
)
export RLM_LICENSE=$PATH_TO_THE_LICENSE_FILE_ace.lic:$RLM_LICENSE
Run the license server
Achronix_Linux_License_Server/rlm -c $PATH_TO_THE_LICENSE_FILE_ace.lic
Now you should be able to launch the ace
execuable
Achronix-linux/ace
(THE SOLUTION BELOW DOES NOT WORK)
When launching ace, you may see a warning complaining about incompatible browser.
The reason is explain here, https://secure.achronix.com/getfile.php?file=/public/Achronix/Archive/ACE_4.x/ACE_4_2_1_Release_Notes_RN001.pdf
The solution is to install
xulrunner
with a version not later than 3.6 (Solution Reference, http://askubuntu.com/questions/125980/how-do-i-install-xulrunner).
XURL=https://ftp.mozilla.org/pub/xulrunner/releases/3.6.28/runtimes/xulrunner-3.6.28.en-US.linux-i686.tar.bz2
cd /opt
sudo sh -c “wget -O- $XURL | tar -xj”
sudo ln -s /opt/xulrunner/xulrunner /usr/bin/xulrunner
sudo ln -s /opt/xulrunner/xpcshell /usr/bin/xpcshell
To uninstall it, simply remove the directory under /opt/xulrunner
, and the symbolic links /usr/bin/xulrunner
and /usr/bin/xpcshell
.