I am trying to run the "Valar" benchmark applications on my system through Qt Creator and am getting errors when I build the code:
https://github.com/Frinhard/valar-bench
I typed the command
autoreconf -ivf
autoreconf -ivf
To copy to clipboard, switch view to plain text mode
and got the following output:
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
aclocal: couldn't open directory `m4': No such file or directory
autoreconf: aclocal failed with exit status: 1
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
aclocal: couldn't open directory `m4': No such file or directory
autoreconf: aclocal failed with exit status: 1
To copy to clipboard, switch view to plain text mode
All my errors were connected to the file m4 so I created an empty directory and named it m4. After that I was able to run the command
autoreconf --install
autoreconf --install
To copy to clipboard, switch view to plain text mode
and I no longer kept getting the same error. Moreover, Makefile.in was also generated along with many other files.
The image shows the state of the directory after I ran
autoreconf --install
autoreconf --install
To copy to clipboard, switch view to plain text mode
:
myfiles.jpg
I ran the command
qmake --project
qmake --project
To copy to clipboard, switch view to plain text mode
on the command line and the
.pro
.pro
To copy to clipboard, switch view to plain text mode
file was generated.
I opened the newly generated .pro file in Qt Creator and linked the OpenCL libraries in addition to the other OpenCL files in the "bin" directory.
pro4JPG.jpg
pro.jpg
This picture indicates the errors I have been getting:
Errors.jpg
The following is the information I have regarding the qmake I am using:
Qmake version: 1.07a (Qt 3.3.8b)
Qmake is free software from Trolltech ASA.
Qmake version: 1.07a (Qt 3.3.8b)
Qmake is free software from Trolltech ASA.
To copy to clipboard, switch view to plain text mode
Please help me in building and building my OpenCL applications successfully. Please point out to me what exactly I am doing/have done wrong.
Bookmarks