aboutsummaryrefslogtreecommitdiffhomepage
path: root/protoc-artifacts/build-protoc.sh
blob: 137c5d63453b3b186e191534bf93428579c06aca (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

# Override the default value set in configure.ac that has '-g' which produces
# huge binary.
export CXXFLAGS=-DNDEBUG

cd $(dirname "$0")/.. && ./configure --disable-shared && make &&
  cd src && (strip protoc || strip protoc.exe)