On Thu, 2004-02-26 at 22:06, Chris Liechti wrote > > 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)/$@ . > > done, thanks
Nice. It works. Now, there is an other problem with the compilation of this tool. libHIL is build in jtag/hardware_access, but jtag/python/setup.py is looking for it in jtag/hardware_access/HILppdev causing the setup to fail. I didn't experience this before, beause I had an old libHIL in my path. I needed to change a line in jtag/python/setup.py hil = "../hardware_access/HILppdev" to hil = "../hardware_access" This was on a Gentoo Linux system, but I think this is true for all platforms. Jonas
