1695b41eeSopenharmony_ci#!/bin/bash -eu
2695b41eeSopenharmony_ci# Copyright 2020 Google Inc.
3695b41eeSopenharmony_ci#
4695b41eeSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
5695b41eeSopenharmony_ci# you may not use this file except in compliance with the License.
6695b41eeSopenharmony_ci# You may obtain a copy of the License at
7695b41eeSopenharmony_ci#
8695b41eeSopenharmony_ci#      http://www.apache.org/licenses/LICENSE-2.0
9695b41eeSopenharmony_ci#
10695b41eeSopenharmony_ci# Unless required by applicable law or agreed to in writing, software
11695b41eeSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS,
12695b41eeSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13695b41eeSopenharmony_ci# See the License for the specific language governing permissions and
14695b41eeSopenharmony_ci# limitations under the License.
15695b41eeSopenharmony_ci#
16695b41eeSopenharmony_ci################################################################################
17695b41eeSopenharmony_ci
18695b41eeSopenharmony_cicmake -Bbuild-cmake -H.
19695b41eeSopenharmony_cicmake --build build-cmake
20695b41eeSopenharmony_ci
21695b41eeSopenharmony_cicd $SRC/ninja/misc
22695b41eeSopenharmony_ci
23695b41eeSopenharmony_ci$CXX $CXXFLAGS -fdiagnostics-color -I/src/ninja/src -o fuzzer.o -c manifest_fuzzer.cc
24695b41eeSopenharmony_ci
25695b41eeSopenharmony_cifind .. -name "*.o" -exec ar rcs fuzz_lib.a {} \;
26695b41eeSopenharmony_ci
27695b41eeSopenharmony_ci$CXX $CXXFLAGS $LIB_FUZZING_ENGINE fuzzer.o -o $OUT/fuzzer fuzz_lib.a
28695b41eeSopenharmony_ci
29695b41eeSopenharmony_cizip $OUT/fuzzer_seed_corpus.zip $SRC/sample_ninja_build
30