Skip to content

Commit

Permalink
Fix MacOS protoc release (protocolbuffers#5638)
Browse files Browse the repository at this point in the history
* Use set -ex
* Use -std=c++14 so -latomic can be found
  • Loading branch information
Hao Nguyen authored Jan 26, 2019
1 parent fac8e34 commit 45a723b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kokoro/release/protoc/macos/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

set -x
CXXFLAGS_COMMON="-DNDEBUG -mmacosx-version-min=10.9"
set -ex
CXXFLAGS_COMMON="-std=c++14 -DNDEBUG -mmacosx-version-min=10.9"

cd github/protobuf
./autogen.sh
Expand Down

0 comments on commit 45a723b

Please sign in to comment.