Lines Matching +full:pkg +full:- +full:config

1 Protocol Buffers - Google's data interchange format
4-kokoro-results/status-badge/linux-cpp_distcheck.png)](https://fusion.corp.google.com/projectanaly…
8 https://developers.google.com/protocol-buffers/
10 C++ Installation - Unix
11 -----------------------
24 $ sudo apt-get install autoconf automake libtool curl make g++ unzip
34 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if
35 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package
37 download `protobuf-all-[VERSION].tar.gz`.
45 $ git submodule update --init --recursive
64 http://www.gnu.org/software/autoconf/manual/autoconf.html#Running-configure-Scripts
73 ./configure --prefix=/usr
82 Protocol Buffers integrates with pkg-config to manage this. If you
83 have pkg-config installed, then you can invoke it to get a list of
86 pkg-config --cflags protobuf # print compiler flags
87 pkg-config --libs protobuf # print linker flags
88 pkg-config --cflags --libs protobuf # print both
92 c++ my_program.cc my_proto.pb.cc `pkg-config --cflags --libs protobuf`
95 Buffers may not yet integrate with pkg-config to get flags, and may
100 configure CXXFLAGS="$(pkg-config --cflags protobuf)" \
101 LIBS="$(pkg-config --libs protobuf)"
105 If you are writing an autoconf-based package that uses Protocol
111 See the pkg-config man page for more info.
113 If you only want protobuf-lite, substitute "protobuf-lite" in place
122 $ sudo xcode-select --install
132 **Note for cross-compiling**
135 built in order to build tests. When cross-compiling, the protoc
138 the --with-protoc option to tell configure to use it instead. For
141 ./configure --with-protoc=protoc
149 ./configure --with-protoc=../host/src/protoc
158 about libstdc++.la being invalid. We have included a work-around
159 in this package. To use the work-around, run configure as follows:
161 ./configure LDFLAGS=-L$PWD/src/solaris
169 ./configure CXXFLAGS="-O -std ansi -ieee -D__USE_STD_IOSTREAM"
181 C++ Installation - Windows
182 --------------------------
189 In the downloads section, download the zip file protoc-$VERSION-win32.zip.
195 >vcpkg install protobuf protobuf:x64-windows
199 >vcpkg install protobuf[zlib] protobuf[zlib]:x64-windows
209 ----------------------------
215 re-compiling. This problem, when it occurs, will normally be detected
220 ./configure --disable-shared
223 -----
228 https://developers.google.com/protocol-buffers/