[PATCH] D42008: Switch from Bourne shell to simply base shell to build libfuzzer
David CARLIER via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 12 12:58:58 PST 2018
devnexen created this revision.
devnexen added a reviewer: krytarowski.
Herald added subscribers: Sanitizers, llvm-commits.
It is not necessary launching the build script with bash.
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D42008
Files:
build.sh
Index: build.sh
===================================================================
--- build.sh
+++ build.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
LIBFUZZER_SRC_DIR=$(dirname $0)
CXX="${CXX:-clang}"
for f in $LIBFUZZER_SRC_DIR/*.cpp; do
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42008.129692.patch
Type: text/x-patch
Size: 251 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180112/6631f24f/attachment.bin>
More information about the llvm-commits
mailing list