Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nanopb
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
le
nanopb
Commits
cc3c8732
Commit
cc3c8732
authored
10 years ago
by
Petteri Aimonen
Browse files
Options
Downloads
Patches
Plain Diff
Actually make the protoc version check work
parent
7135e279
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/SConstruct
+2
-4
2 additions, 4 deletions
tests/SConstruct
tests/oneof/SConscript
+8
-2
8 additions, 2 deletions
tests/oneof/SConscript
with
10 additions
and
6 deletions
tests/SConstruct
+
2
−
4
View file @
cc3c8732
...
...
@@ -73,11 +73,9 @@ if not env.GetOption('clean'):
conf
.
env
.
Append
(
PROTOCPATH
=
'
/usr/include
'
)
# Check protoc version
status
,
output
=
conf
.
TryAction
(
'
protoc
--version
'
)
status
,
output
=
conf
.
TryAction
(
'
$PROTOC
--version
> $TARGET
'
)
if
status
:
conf
.
env
.
Append
(
PROTOC_VERSION
=
output
)
else
:
conf
.
env
.
Append
(
PROTOC_VERSION
=
""
)
conf
.
env
[
'
PROTOC_VERSION
'
]
=
output
# Check if libmudflap is available (only with GCC)
if
'
gcc
'
in
env
[
'
CC
'
]:
...
...
This diff is collapsed.
Click to expand it.
tests/oneof/SConscript
+
8
−
2
View file @
cc3c8732
...
...
@@ -3,10 +3,16 @@
Import
(
'
env
'
)
import
re
version
=
re
.
search
(
'
([0-9]+).([0-9]+).([0-9]+)
'
,
'
libprotoc 3.0.0
'
).
groups
()
match
=
None
if
'
PROTOC_VERSION
'
in
env
:
match
=
re
.
search
(
'
([0-9]+).([0-9]+).([0-9]+)
'
,
env
[
'
PROTOC_VERSION
'
])
if
match
:
version
=
map
(
int
,
match
.
groups
())
# Oneof is supported by protoc >= 2.6.0
if
int
(
version
[
0
]
)
>
2
or
(
int
(
version
[
0
]
)
==
2
and
int
(
version
[
1
]
)
>=
6
):
if
env
.
GetOption
(
'
clean
'
)
or
(
match
and
(
version
[
0
]
>
2
or
(
version
[
0
]
==
2
and
version
[
1
]
>=
6
)
))
:
env
.
NanopbProto
(
'
oneof
'
)
enc
=
env
.
Program
([
'
encode_oneof.c
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment