Forum Discussion
VinayGB
New Contributor
5 years agoNew application creation failure in NIOS II - Quartus20.1
I have installed Quartus 20.1 and followed instructions in n2sw_nii5v2gen2.pdf to install wsl2 and then Ubuntu and eclipse.
In eclipse workspace, when I try to create new application and bsp from ...
Mack
New Contributor
5 years agoFor me, I was able to fix this by editing nios2-bsp (in C:\intelFPGA_lite\20.1\nios2eds\sdk2\bin). There's a line that checks if you're running WSL:
uname=$(uname -r)
if [[ $uname =~ "Microsoft" ]]; then
_IS_WSL=1
windows_exe=.exe
fi
On line 37, it should be changed to:
if [[ $uname =~ "microsoft" ]]; then
This then causes the script to add .exe to the end of all the executables and a few other things that fixed it for me.