Home
last modified time | relevance | path

Searched +full:- +full:wall (Results 1 – 10 of 10) sorted by relevance

/nanopb-3.4.0/tests/site_scons/platforms/avr/
Davr.py5 native.Append(LIBS = ["simavr", "libelf"], CFLAGS = "-Wall -Werror -g")
9 env.Replace(CC = "avr-gcc",
10 CXX = "avr-g++")
12 env.Append(CFLAGS = "-mmcu=atmega1284 -Dmain=app_main -Os -g -Wall ")
13 env.Append(CXXFLAGS = "-mmcu=atmega1284 -Dmain=app_main -Os -Wno-type-limits")
17 env.Append(LINKFLAGS = "-mmcu=atmega1284")
18 env.Append(LINKFLAGS = "-Wl,-Map,build/avr.map")
/nanopb-3.4.0/tests/fuzztest/
Dossfuzz.sh1 #!/bin/bash -eu
9 rm -rf build
17 mv $f fuzztest_seed_corpus/$(sha1sum $f | cut -f 1 -d ' ')
19 zip -r "$OUT/corpus.zip" fuzztest_seed_corpus
22 rm -rf build
31 CCFLAGS="-Wall -Wextra -g -DLLVMFUZZER $CFLAGS" \
32 CXXFLAGS="-Wall -Wextra -g -DLLVMFUZZER $CXXFLAGS" \
34 LINKFLAGS="-std=c++11 $CXXFLAGS" \
/nanopb-3.4.0/examples/cmake_simple/
DCMakeLists.txt11 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -g -O0")
/nanopb-3.4.0/examples/cmake_relpath/
DCMakeLists.txt13 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -g -O0")
/nanopb-3.4.0/examples/network_server/
DMakefile5 CFLAGS = -ansi -Wall -Werror -g -O0
6 CFLAGS += -I$(NANOPB_DIR)
13 rm -f server client fileproto.pb.c fileproto.pb.h
16 $(CC) $(CFLAGS) -o $@ $^ $(NANOPB_CORE)
DREADME.txt9 -------------
12 protoc -ofileproto.pb fileproto.proto
15 cc -ansi -Wall -Werror -I .. -g -O0 -I../.. -o server server.c
17 cc -ansi -Wall -Werror -I .. -g -O0 -I../.. -o client client.c
41 -------------------------
43 It could be used as-is to implement a server or a client in any other language, for
46 fileproto.options contains the nanopb-specific options for the protocol file. This
/nanopb-3.4.0/examples/using_union_messages/
DMakefile5 CFLAGS = -ansi -Wall -Werror -g -O0
6 CFLAGS += -I$(NANOPB_DIR)
16 rm -f encode unionproto.pb.h unionproto.pb.c
19 $(CC) $(CFLAGS) -o $@ $^ $(NANOPB_CORE)
/nanopb-3.4.0/examples/simple/
DMakefile5 CFLAGS = -Wall -Werror -g -O0
6 CFLAGS += "-I$(NANOPB_DIR)"
17 $(CC) $(CFLAGS) -osimple $(CSRC)
21 $(PROTOC) $(PROTOC_OPTS) --nanopb_out=. simple.proto
/nanopb-3.4.0/tests/
DSConstruct92 status, output = context.TryAction('$PROTOC --version > $TARGET')
126 if conf.CheckCCFLAGS('', linkflags = '-lm'):
127 conf.env.Append(LINKFLAGS = '-lm')
138 conf.env.Append(CCFLAGS = '-fmudflap')
139 conf.env.Append(LINKFLAGS = '-fmudflap')
142 extra = '-Wcast-qual -Wlogical-op -Wconversion'
143 extra += ' -fstrict-aliasing -Wstrict-aliasing=1'
144 extra += ' -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls'
145 extra += ' -Wstack-protector '
153 extra = '-fsanitize=undefined,integer -fno-sanitize-recover=undefined,integer '
[all …]
/nanopb-3.4.0/.github/workflows/
Dpypi_publish.yml13 runs-on: ubuntu-20.04
16 - name: Check out code from GitHub
20 fetch-depth: "0"
22 - name: Install dependencies
24 python3 -m pip install --user --upgrade pyinstaller poetry protobuf grpcio-tools
26 - name: Build PyPI package
31 - name: Fingerprint package
35 - name: Check for existence of PyPI package
37 VERSION=$(grep "^version =" nanopb/extra/poetry/build/pyproject.toml | cut -d '"' -f 2)
38 if curl --head --silent --fail https://pypi.org/project/nanopb/$VERSION/; then
[all …]