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
I am trying to build test programs with the below program: python3 <LLFI_DST_ROOT>/test_suite/SCRIPTS/build_prog.py
But it shows me 'deque' file missing
The relevant output is below:
How can I make clang3.4 compatible with c++17 so that 'deque' header file is recognized.
The text was updated successfully, but these errors were encountered:
karthikp-ubc
No branches or pull requests
I am trying to build test programs with the below program:
python3 <LLFI_DST_ROOT>/test_suite/SCRIPTS/build_prog.py
But it shows me 'deque' file missing
The relevant output is below:
make[1]: Entering directory '/home/hasan/llfi-tool/llfi/test_suite/PROGRAMS/bfs'
/home/hasan/llfi-tool/llvm/bin/clang++ -emit-llvm -fno-use-cxa-atexit main.cpp -c -o main.bc
main.cpp:30:10: fatal error: 'deque' file not found
#include
^
1 error generated.
make[1]: *** [Makefile:25: main.bc] Error 1
make[1]: Leaving directory '/home/hasan/llfi-tool/llfi/test_suite/PROGRAMS/bfs'
make: *** [Makefile:6: all] Error 2
ERROR: Failed in building all programs
How can I make clang3.4 compatible with c++17 so that 'deque' header file is recognized.
The text was updated successfully, but these errors were encountered: