build-protoc.sh 244 B

12345678
  1. #!/bin/bash
  2. # Override the default value set in configure.ac that has '-g' which produces
  3. # huge binary.
  4. export CXXFLAGS=-DNDEBUG
  5. cd $(dirname "$0")/.. && ./configure --disable-shared && make &&
  6. cd src && (strip protoc || strip protoc.exe)