Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-repo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
sds-repo
Commits
6c51624c
Commit
6c51624c
authored
Dec 04, 2018
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added sizecheck variant in bake
parent
848e6f33
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
packages/bake/package.py
packages/bake/package.py
+13
-0
No files found.
packages/bake/package.py
View file @
6c51624c
...
...
@@ -11,6 +11,8 @@ class Bake(AutotoolsPackage):
version
(
'develop'
,
branch
=
'master'
)
version
(
'0.1'
,
tag
=
'v0.1'
)
variant
(
'sizecheck'
,
default
=
False
,
description
=
"Enable size/bound checking (may degrade performance)"
)
depends_on
(
'autoconf@2.65:'
,
type
=
(
"build"
))
depends_on
(
'automake@1.13.4:'
,
type
=
(
"build"
))
depends_on
(
'libtool'
,
type
=
(
"build"
))
...
...
@@ -18,3 +20,14 @@ class Bake(AutotoolsPackage):
depends_on
(
'remi@0.1:'
)
depends_on
(
'libuuid'
)
depends_on
(
'pmem'
)
def
configure_args
(
self
):
spec
=
self
.
spec
extra_args
=
[]
if
'+sizecheck'
in
spec
:
extra_args
.
append
(
'--enable-sizecheck'
)
else
:
extra_args
.
append
(
'--disable-sizecheck'
)
return
extra_args
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment