Forum Discussion
JVano
New Contributor
6 years agoEDS on Quartus 19.1 on Windows , linker error
Building Hello_World Sample, with minimum NIOSII system, internal memory. I get this error: nios2-elf-g++.exe: error: missing argument to '-msys-lib=' Perhaps some missing semicolon in the paramete...
Anonymous
6 years agoNot applicable
I had the same problem by upgrate a projekt from quartus18.1 to 20.1.
It is a MAX 10 project with the standard edition.
Correct is -msys-lib=hal_bsp
I have changed in make file
APP_LDFLAGS += -msys-lib=$(call adjust-path-mixed,$(SYS_LIB))
to
APP_LDFLAGS += -msys-lib=$(SYS_LIB)
Than it works fine.
Please change only this line.