proxygen
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
sigar.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
# Copyright (c) Facebook, Inc. and its affiliates.
3
from
__future__
import
absolute_import
4
from
__future__
import
division
5
from
__future__
import
print_function
6
from
__future__
import
unicode_literals
7
8
from
shell_quoting
import
ShellQuoted
9
10
11
def
fbcode_builder_spec
(builder):
12
builder.add_option(
13
'hyperic/sigar:autoconf_options'
, {
'CFLAGS'
:
'-fgnu89-inline'
})
14
return
{
15
'steps'
: [
16
builder.github_project_workdir(
'hyperic/sigar'
,
'.'
),
17
builder.step(
'Build and install sigar'
, [
18
builder.run(ShellQuoted(
'./autogen.sh'
)),
19
builder.configure(
'hyperic/sigar'
),
20
builder.make_and_install(),
21
]),
22
],
23
}
specs.sigar.fbcode_builder_spec
def fbcode_builder_spec(builder)
Definition:
sigar.py:11
proxygen
fizz
build
fbcode_builder
specs
sigar.py
Generated by
1.8.11