You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to build arora from the plugins branch, but get errors:
First:
WARNING: Failure to find: aroraapi.h
Later, the build fails with:
/usr/bin/ld: cannot find -larora_api
The text was updated successfully, but these errors were encountered:
Uh, sorry. I haven't noticed that there is an issue tracker in github, and one issue in it :)
Basicly the main problem, is that I'm not (yet) a big hero of qmake, so everything is work-in-progress. The real problem, which i've trying to solve is that there is one project file/make file for the browser, one for the plugin_api, and one for every plugin, however there is some circular references between.
For example, plugin_api needs some generated headers, ui classes from the browser, but the browser needs a compiled plugin_api to link.
So currently the build process is the following:
qmake
make - after it fails
cd pluginapi
qmake
make
cd .. - back to the main project
make - this time it will works
after you can compile the plugins separately from the 'extensions' folder. All the shared objects are put into the 'plugins' folder.
Hope it helps, feel free to ask, or share your thoughts :)
I'm trying to build arora from the plugins branch, but get errors:
First:
WARNING: Failure to find: aroraapi.h
Later, the build fails with:
/usr/bin/ld: cannot find -larora_api
The text was updated successfully, but these errors were encountered: