[protobuf] Re: the system cannot find the file specified

2019-06-05 Thread Tenario Powell
How do I make it searchable by path and what do I download On Monday, February 29, 2016 at 6:53:00 PM UTC-5, wtTest wrote: > > I'm trying to generate the c# clases with: > > protoc > --proto_path=D:\Proyectos\wtGPS\packages\Google.ProtocolBuffers.2.4.1.555\tools > >

Re: [protobuf] the system cannot find the file specified

2019-06-05 Thread Tenario Powell
I see what to download but how do I make it searchable On Monday, March 7, 2016 at 8:10:48 PM UTC-5, Bo Yang wrote: > > You need to download the protoc compiler for windows, and put it in a > place searchable by PATH. > >

[protobuf] Cross compiling using cmake

2019-06-05 Thread Dibet Garcia
Hi, iam using the following command cmake -D BUILD_SHARED_LIBS=ON -D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_CXX_COMPILER=/usr/bin/arm-linux-gnueabihf-g++ -DCMAKE_C_COMPILER=/usr/bin/arm-linux-gnueabihf-gcc -DCMAKE_AR=/usr/bin/arm-linux-gnueabihf-ar .. How i can especify the protoc binary file ?

[protobuf] Re: Cross compiling protobuf for ARM on Windows machine

2019-06-05 Thread Dibet Garcia
Hi, i have the same problem. iam using on linux the following command cmake -D BUILD_SHARED_LIBS=ON -D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_CXX_COMPILER=/usr/bin/arm-linux-gnueabihf-g++ -DCMAKE_C_COMPILER=/usr/bin/arm-linux-gnueabihf-gcc -DCMAKE_AR=/usr/bin/arm-linux-gnueabihf-ar .. But i dont

[protobuf] Re: Cross compiling using cmake

2019-06-05 Thread Dibet Garcia
I change my cmake command line to cmake -D BUILD_SHARED_LIBS=ON -D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_CXX_COMPILER=/usr/bin/arm-linux-gnueabihf-g++ -DCMAKE_C_COMPILER=/usr/bin/arm-linux-gnueabihf-gcc -DCMAKE_AR=/usr/bin/arm-linux-gnueabihf-ar CMAKE_INSTALL_PREFIX=/opt/arm-local/protobuf ..