aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libphonenumber/build.sh
blob: b003f33e4be4fdf2c04ad23c5f617337de348f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/bin/bash -eu
# Copyright 2020 Google Inc.
#
# 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.
#
################################################################################

export CXXFLAGS="$CXXFLAGS -std=c++14"

# For coverage build we need to remove some flags when building protobuf and icu
if [ "$SANITIZER" = "coverage" ]
then
    export OCX=$CXXFLAGS
    export OC=$CFLAGS
    CF1=${CFLAGS//-fprofile-instr-generate/}
    export CFLAGS=${CF1//-fcoverage-mapping/}
    CXF1=${CXXFLAGS//-fprofile-instr-generate/}
    export CXXFLAGS=${CXF1//-fcoverage-mapping/}
fi

cd $SRC/
git clone --depth=1 https://github.com/abseil/abseil-cpp
cd abseil-cpp
mkdir build && cd build
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON ../  && make && make install

ldconfig

cd $SRC/

# Build Protobuf
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./autogen.sh
./configure
make -j$(nproc)
make install
ldconfig


# Build icu
export DEPS_PATH=/src/deps/
mkdir $DEPS_PATH

# build ICU for linking statically.
cd $SRC/icu/source
./configure --disable-shared --enable-static --disable-layoutex \
  --disable-tests --disable-samples --with-data-packaging=static --prefix=$DEPS_PATH
make install -j$(nproc)

# Ugly ugly hack to get static linking to work for icu.
cd $DEPS_PATH/lib
ls *.a | xargs -n1 ar x
rm *.a
ar r libicu.a *.{ao,o}
ln -s libicu.a libicudata.a
ln -s libicu.a libicuuc.a
ln -s libicu.a libicui18n.a

if [ "$SANITIZER" = "coverage" ]
then
    export CFLAGS=$OC
    export CXXFLAGS=$OCX
fi

# Build libphonenumber
cd $SRC/libphonenumber/cpp
sed -i 's/set (BUILD_SHARED_LIB true)/set (BUILD_SHARED_LIB false)/g' CMakeLists.txt
sed -i 's/set(CMAKE_CXX_STANDARD 11)/set(CMAKE_CXX_STANDARD 14)/g' CMakeLists.txt
sed -i 's/list (APPEND CMAKE_C_FLAGS "-pthread")/string (APPEND CMAKE_C_FLAGS " -pthread")/g' CMakeLists.txt
sed -i 's/# Safeguarding/find_package(absl REQUIRED) # Safeguarding/g' CMakeLists.txt

mkdir build && cd build
cmake -DUSE_BOOST=OFF -DBUILD_GEOCODER=OFF \
      -DPROTOBUF_LIB="/src/protobuf/src/.libs/libprotobuf.a" \
      -DBUILD_STATIC_LIB=ON \
      -DICU_UC_INCLUDE_DIR=$SRC/icu/source/comon \
      -DICU_UC_LIB=$DEPS_PATH/lib/libicuuc.a \
      -DICU_I18N_INCLUDE_DIR=$SRC/icu/source/i18n/ \
      -DICU_I18N_LIB=$DEPS_PATH/lib/libicui18n.a  \
      ../
make

# Build our fuzzer
$CXX -I$SRC/libphonenumber/cpp/src $CXXFLAGS -o phonefuzz.o -c $SRC/phonefuzz.cc
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE phonefuzz.o -o $OUT/phonefuzz \
    ./libphonenumber.a \
    $SRC/protobuf/src/.libs/libprotobuf.a \
    /usr/local/lib/libabsl_cord.a \
    /usr/local/lib/libabsl_cordz_info.a \
    /usr/local/lib/libabsl_cord_internal.a \
    /usr/local/lib/libabsl_cordz_functions.a \
    /usr/local/lib/libabsl_cordz_handle.a \
    /usr/local/lib/libabsl_hash.a \
    /usr/local/lib/libabsl_city.a \
    /usr/local/lib/libabsl_bad_variant_access.a \
    /usr/local/lib/libabsl_low_level_hash.a \
    /usr/local/lib/libabsl_raw_hash_set.a \
    /usr/local/lib/libabsl_bad_optional_access.a \
    /usr/local/lib/libabsl_hashtablez_sampler.a \
    /usr/local/lib/libabsl_exponential_biased.a \
    /usr/local/lib/libabsl_synchronization.a \
    /usr/local/lib/libabsl_graphcycles_internal.a \
    /usr/local/lib/libabsl_stacktrace.a \
    /usr/local/lib/libabsl_symbolize.a \
    /usr/local/lib/libabsl_malloc_internal.a \
    /usr/local/lib/libabsl_debugging_internal.a \
    /usr/local/lib/libabsl_demangle_internal.a \
    /usr/local/lib/libabsl_time.a \
    /usr/local/lib/libabsl_strings.a \
    /usr/local/lib/libabsl_strings_internal.a \
    /usr/local/lib/libabsl_throw_delegate.a \
    /usr/local/lib/libabsl_int128.a \
    /usr/local/lib/libabsl_civil_time.a \
    /usr/local/lib/libabsl_time_zone.a \
    /usr/local/lib/libabsl_base.a \
    /usr/local/lib/libabsl_raw_logging_internal.a \
    /usr/local/lib/libabsl_log_severity.a \
    /usr/local/lib/libabsl_spinlock_wait.a \
    -lrt \
    $DEPS_PATH/lib/libicu.a -lpthread