aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorGravatar Mike Aizatsky <mike.aizatsky@gmail.com>2016-11-29 11:33:34 -0800
committerGravatar Mike Aizatsky <mike.aizatsky@gmail.com>2016-11-29 11:33:42 -0800
commit879120437d81de928879a93b1c9796d630aa767e (patch)
treebae5b6c9fffd464280bb9586ba8acbcd6c8c07a7 /projects
parentf30ec07cc245dda995244fe01f233c5ef578c4d5 (diff)
[infra] build.sh cleanup
Diffstat (limited to 'projects')
-rwxr-xr-xprojects/c-ares/build.sh2
-rwxr-xr-xprojects/ffmpeg/build.sh2
-rwxr-xr-xprojects/libarchive/build.sh4
-rwxr-xr-xprojects/ots/build.sh2
-rwxr-xr-xprojects/pcre2/build.sh4
5 files changed, 7 insertions, 7 deletions
diff --git a/projects/c-ares/build.sh b/projects/c-ares/build.sh
index 41fbf3bb..965a5971 100755
--- a/projects/c-ares/build.sh
+++ b/projects/c-ares/build.sh
@@ -15,7 +15,7 @@
#
################################################################################
-# Build the target.
+# Build the project.
./buildconf
./configure --enable-debug
make clean
diff --git a/projects/ffmpeg/build.sh b/projects/ffmpeg/build.sh
index 87e589dc..4c90217a 100755
--- a/projects/ffmpeg/build.sh
+++ b/projects/ffmpeg/build.sh
@@ -138,7 +138,7 @@ make install
rm $FFMPEG_DEPS_PATH/lib/*.so
rm $FFMPEG_DEPS_PATH/lib/*.so.*
-# Build the target.
+# Build ffmpeg.
cd $SRC/ffmpeg
PKG_CONFIG_PATH="$FFMPEG_DEPS_PATH/lib/pkgconfig" ./configure \
--cc=$CC --cxx=$CXX --ld="$CXX $CXXFLAGS -std=c++11" \
diff --git a/projects/libarchive/build.sh b/projects/libarchive/build.sh
index 275fd68a..261a045a 100755
--- a/projects/libarchive/build.sh
+++ b/projects/libarchive/build.sh
@@ -15,12 +15,12 @@
#
################################################################################
-# build the target.
+# build the project
./build/autogen.sh
./configure
make -j$(nproc) all
-# build your fuzzer(s)
+# build fuzzer(s)
$CXX $CXXFLAGS -Ilibarchive \
$SRC/libarchive_fuzzer.cc -o $OUT/libarchive_fuzzer \
-lfuzzer .libs/libarchive.a \
diff --git a/projects/ots/build.sh b/projects/ots/build.sh
index 9b516f89..7b2287ab 100755
--- a/projects/ots/build.sh
+++ b/projects/ots/build.sh
@@ -15,7 +15,7 @@
#
################################################################################
-# Build the target.
+# Build the project.
./autogen.sh
./configure
diff --git a/projects/pcre2/build.sh b/projects/pcre2/build.sh
index fdcec503..3c6a9afb 100755
--- a/projects/pcre2/build.sh
+++ b/projects/pcre2/build.sh
@@ -17,11 +17,11 @@
cd pcre2
-# build the library.
+# build project
./autogen.sh
./configure --enable-fuzz-support --enable-never-backslash-C --with-match-limit=1000 --with-match-limit-recursion=1000
make -j$(nproc) clean all
-# Build the target.
+# build fuzer
$CXX $CXXFLAGS -o $OUT/pcre2_fuzzer \
-lfuzzer .libs/libpcre2-fuzzsupport.a .libs/libpcre2-8.a