Skip to content

Commit

Permalink
Merge pull request #1853 from pherl/3.0.0-GA
Browse files Browse the repository at this point in the history
Make protoc-artifacts able to build plugins.
  • Loading branch information
liujisi authored Jul 26, 2016
2 parents b6b521b + 7c9c314 commit 7ba044a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
29 changes: 21 additions & 8 deletions protoc-artifacts/build-protoc.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
#!/bin/bash

# Builds protoc executable into target/protoc.exe
# Builds protoc executable into target/protoc.exe; optionally build protoc
# plugins into target/protoc-gen-*.exe
# To be run from Maven.
# Usage: build-protoc.sh <OS> <ARCH>
# Usage: build-protoc.sh <OS> <ARCH> <TARGET>
# <OS> and <ARCH> are ${os.detected.name} and ${os.detected.arch} from os-maven-plugin
# <TARGET> can be "protoc" or "protoc-gen-javalite"
OS=$1
ARCH=$2
MAKE_TARGET=$3

if [[ $# < 2 ]]; then
if [[ $# < 3 ]]; then
echo "No arguments provided. This script is intended to be run from Maven."
exit 1
fi

case $MAKE_TARGET in
protoc-gen-javalite)
;;
protoc)
;;
*)
echo "Target ""$TARGET"" invalid."
exit 1
esac

# Under Cygwin, bash doesn't have these in PATH when called from Maven which
# runs in Windows version of Java.
export PATH="/bin:/usr/bin:$PATH"
Expand Down Expand Up @@ -126,15 +139,14 @@ checkDependencies ()
}
############################################################################

echo "Building protoc, OS=$OS ARCH=$ARCH"
echo "Building protoc, OS=$OS ARCH=$ARCH TARGET=$TARGET"

# Nested double quotes are unintuitive, but it works.
cd "$(dirname "$0")"

WORKING_DIR=$(pwd)
CONFIGURE_ARGS="--disable-shared"

MAKE_TARGET="protoc"
if [[ "$OS" == windows ]]; then
MAKE_TARGET="${MAKE_TARGET}.exe"
fi
Expand Down Expand Up @@ -209,12 +221,13 @@ fi

export CXXFLAGS LDFLAGS

TARGET_FILE=target/protoc.exe
TARGET_FILE=target/$MAKE_TARGET.exe

cd "$WORKING_DIR"/.. && ./configure $CONFIGURE_ARGS &&
cd src && make clean && make $MAKE_TARGET &&
cd src && make clean && make $MAKE_TARGET -j4 &&
cd "$WORKING_DIR" && mkdir -p target &&
(cp ../src/protoc $TARGET_FILE || cp ../src/protoc.exe $TARGET_FILE) ||
(cp ../src/$MAKE_TARGET $TARGET_FILE ||
cp ../src/$MAKE_TARGET.exe $TARGET_FILE) ||
exit 1

if [[ "$OS" == osx ]]; then
Expand Down
1 change: 1 addition & 0 deletions protoc-artifacts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<argument>build-protoc.sh</argument>
<argument>${os.detected.name}</argument>
<argument>${os.detected.arch}</argument>
<argument>protoc</argument>
</arguments>
</configuration>
</plugin>
Expand Down

0 comments on commit 7ba044a

Please sign in to comment.