2017-07-18 16:14:34 +00:00
|
|
|
#!/bin/bash -eu
|
2017-07-18 18:15:15 +00:00
|
|
|
# Copyright 2017 Google Inc.
|
2017-07-18 16:14:34 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
mkdir -p $WORK/open62541
|
|
|
|
cd $WORK/open62541
|
|
|
|
|
2017-07-18 18:15:15 +00:00
|
|
|
# LOGLEVEL:
|
|
|
|
# <= 100 TRACE
|
|
|
|
# <= 200 DEBUG
|
|
|
|
# <= 300 INFO
|
|
|
|
# <= 400 WARNING
|
|
|
|
# <= 500 ERROR
|
|
|
|
# <= 600 FATAL
|
|
|
|
# > 600 No LOG output
|
|
|
|
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUA_ENABLE_AMALGAMATION=OFF \
|
2017-10-26 09:50:03 +00:00
|
|
|
-DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 \
|
2017-07-18 18:15:15 +00:00
|
|
|
-DBUILD_SHARED_LIBS=OFF -DUA_BUILD_EXAMPLES=OFF -DUA_LOGLEVEL=600 \
|
2017-07-19 22:00:08 +00:00
|
|
|
-DUA_BUILD_OSS_FUZZ=ON \
|
2017-07-18 16:14:34 +00:00
|
|
|
$SRC/open62541/
|
|
|
|
|
2017-07-19 22:00:08 +00:00
|
|
|
# This also builds all the fuzz targets and places them in the $OUT directory
|
|
|
|
# Only build with one process otherwise amalgamation fails.
|
2017-07-18 16:14:34 +00:00
|
|
|
make -j1
|
|
|
|
|
2017-07-19 22:00:08 +00:00
|
|
|
# Copy the corpus, dict and options to the $OUT dir
|
|
|
|
$SRC/open62541/tests/fuzz/oss-fuzz-copy.sh
|
2017-07-18 16:14:34 +00:00
|
|
|
|
|
|
|
echo "Built all fuzzer targets."
|