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
Frontends specifies compiler for c++ code only:
deepstate/bin/deepstate/executors/fuzz/afl.py
Line 33 in 67e98f5
There are two issues related to that fact:
We strip "++" from the compiler to get compiler name for C code:
deepstate/bin/deepstate/core/fuzz.py
Lines 373 to 375 in 67e98f5
We use only C++ compiler anyway:
Lines 378 to 380 in 67e98f5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Frontends specifies compiler for c++ code only:
deepstate/bin/deepstate/executors/fuzz/afl.py
Line 33 in 67e98f5
There are two issues related to that fact:
We strip "++" from the compiler to get compiler name for C code:
deepstate/bin/deepstate/core/fuzz.py
Lines 373 to 375 in 67e98f5
We should allow frontends to explicitly specify C compiler.
We use only C++ compiler anyway:
deepstate/bin/deepstate/core/fuzz.py
Lines 378 to 380 in 67e98f5
We should detect if compiled file is C or C++ and set the compiler accordingly. Unless env vars we set earlier in the code do the job?
The text was updated successfully, but these errors were encountered: