blob: d85523716016ae1b5d207f3817fb7270a2b0b936 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
set -xue
cat << EOF >> src/google/protobuf/port_def.inc
#if defined(__clang__) && defined(_WIN32)
#undef PROTOBUF_MUSTTAIL
#undef PROTOBUF_TAILCALL
#define PROTOBUF_MUSTTAIL
#define PROTOBUF_TAILCALL false
#endif
EOF
|