1#!/bin/bash 2# 3# Builds protobuf C++ with aarch64 crosscompiler. 4 5set -ex 6 7./autogen.sh 8CXXFLAGS="-fPIC -g -O2" ./configure --host=aarch64 9make -j8 10