apt-get install systatThe next issue was something different:
/bin/sh: Illegal option -hThe issue here was the /bin/sh is a link to /bin/dash in debian. I changed the link to /bin/bash. Once that was resolved, I then had the next issue related to features.h:
/usr/include/features.h:323:26: fatal error: bits/predefs.h: No such file or directoryI solved this by:
sudo apt-get install libc6-dev-i386This was followed by the inability to find ctri.o, which is solved by linking:
sudo ln -s /usr/lib/x86_64-linux-gnu /usr/lib64because LD_LIBRARY_PATH has /usr/lib64 in it.
And suddenly, 14nm is simulating!
No comments:
Post a Comment