We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a build error when trying to build Daredevil sources with Ubuntu 16.x and clang (Tested with Ubuntu 16.04.3 LTS)
user:~/sidechannelmarvels/Daredevil$ make clang++ -Wall -Wextra -std=c++11 -O3 -DRESOURCES="/usr/local/share/daredevil/" -c cpa.cpp -o cpa.o cpa.cpp:23:10: fatal error: 'omp.h' file not found #include "omp.h" ^ 1 error generated. Makefile:19: recipe for target 'cpa.o' failed make: *** [cpa.o] Error 1
This issue can be fixed on Ubuntu 16.x (or maybe also other version) by doing :
sudo apt install libomp-dev
(it is defined here https://askubuntu.com/questions/900702/how-to-compiler-openmp-program-using-clang)
Please add that to Daredevil dependencies it will help other users Proposal replace
sudo apt-get install --no-install-recommends clang make by sudo apt-get install --no-install-recommends clang make libomp-dev
The text was updated successfully, but these errors were encountered:
a46d773
No branches or pull requests
There is a build error when trying to build Daredevil sources with Ubuntu 16.x and clang (Tested with Ubuntu 16.04.3 LTS)
This issue can be fixed on Ubuntu 16.x (or maybe also other version) by doing :
(it is defined here https://askubuntu.com/questions/900702/how-to-compiler-openmp-program-using-clang)
Please add that to Daredevil dependencies it will help other users
Proposal replace
The text was updated successfully, but these errors were encountered: