Jonas Sølvhøj wrote:
Hi,There's an error in jtag/python/makefile
i would call that an error, maybe a missing feature ;-)
The line cp build/lib.linux-i686-$(PVER)/$@ .only works on i686 systems. A simple solution is to add the following in the start of the file MTYPE:=$(shell (uname -m)) and then change the wrong line to: cp build/lib.linux-$(MTYPE)-$(PVER)/$@ . Using this I am able to compile on a i586 system
done, thanks chris
