xref: /aosp_15_r20/external/protobuf/kokoro/release/protoc/macos/build.sh (revision 1b3f573f81763fcece89efc2b6a5209149e44ab8)
1#!/bin/bash
2
3set -ex
4CXXFLAGS_COMMON="-std=c++14 -DNDEBUG -mmacosx-version-min=10.9"
5
6cd github/protobuf
7./autogen.sh
8
9mkdir build64 && cd build64
10export CXXFLAGS="$CXXFLAGS_COMMON -m64"
11../configure --disable-shared
12make -j4
13file src/protoc
14otool -L src/protoc | grep dylib
15cd ..
16