9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Builds protobuf C++ with aarch64 crosscompiler.
|
|
|
|
set -ex
|
|
|
|
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_WITH_ZLIB=0 -Dprotobuf_BUILD_TESTS=OFF .
|
|
make -j8
|