aboutsummaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-07-11 07:56:16 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-07-11 08:06:08 +0200
commit158d38a4a3496443a5af605c8331c06fdf8bc9ff (patch)
tree3430effe562029ed6bf9227e3066af0ddd3f312e /third_party
parenta83323261ea3e7c1d3450199724a52f30e029691 (diff)
downloadjazzer-api-158d38a4a3496443a5af605c8331c06fdf8bc9ff.tar.gz
Restore g++ compatibility
Also moves the quote command args patch upstream.
Diffstat (limited to 'third_party')
-rw-r--r--third_party/BUILD.bazel1
-rw-r--r--third_party/libFuzzer-quote-command-args.patch13
2 files changed, 0 insertions, 14 deletions
diff --git a/third_party/BUILD.bazel b/third_party/BUILD.bazel
index f3c89124..d4c527f8 100644
--- a/third_party/BUILD.bazel
+++ b/third_party/BUILD.bazel
@@ -1,5 +1,4 @@
exports_files([
"gflags-use-double-dash-args.patch",
"jacoco-make-probe-inserter-subclassable.patch",
- "libFuzzer-quote-command-args.patch",
])
diff --git a/third_party/libFuzzer-quote-command-args.patch b/third_party/libFuzzer-quote-command-args.patch
deleted file mode 100644
index d103e74a..00000000
--- a/third_party/libFuzzer-quote-command-args.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git compiler-rt/lib/fuzzer/FuzzerCommand.h compiler-rt/lib/fuzzer/FuzzerCommand.h
-index 87308864af53..145063d000fb 100644
---- compiler-rt/lib/fuzzer/FuzzerCommand.h
-+++ compiler-rt/lib/fuzzer/FuzzerCommand.h
-@@ -140,7 +140,7 @@ public:
- std::string toString() const {
- std::stringstream SS;
- for (auto arg : getArguments())
-- SS << arg << " ";
-+ SS << "\"" << arg << "\" ";
- if (hasOutputFile())
- SS << ">" << getOutputFile() << " ";
- if (isOutAndErrCombined())