Hello, I am Ayush Jain. I am a 3rd year computer science engineering student from Jamia Millia Islamia University, New Delhi (India). I was interested in the project
Frontend: New Parser in Python to ArchC Language.
I was trying to setup archC in my machine running Ubuntu 15.10 with all the requisite packages installed . While I successfully installed the systemC library, I was having trouble installing the archC package. I ran the following commands successfully:
$ tar -xvf ArchC-2.4.1.tar.gz
$ cd ArchC-2.4.1
$ ./autogen.sh
$ INSTALLDIR=$(pwd)/../acinstall # Set installdir to the parent folder, subfolder install
$ SYSTEMCPATH=$(pwd)/../systemcinstall # Where we previously installed SystemC
$ ./configure --prefix=$INSTALLDIR --with-systemc=$SYSTEMCPATH
However after this when I run make command, in the directory /quickstart-archc/ArchC-2.4.1/src/acpp I get the error arhc_lex.c is not found. This file is not there in the directory as well. I have attached the screenshot of the error as well as the directory. Please take a look and guide me in rectifying this error.