Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
B
buildblocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Pmodules
buildblocks
Commits
5a83593a
Commit
5a83593a
authored
Jul 15, 2014
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
boost: added
parent
22b668d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
config/versions.conf
config/versions.conf
+1
-0
scripts/boost.build
scripts/boost.build
+45
-0
No files found.
config/versions.conf
View file @
5a83593a
autoconf
2
.
69
automake
1
.
14
boost
1
.
55
.
0
cmake
2
.
8
.
12
.
2
emacs
24
.
3
filebench
1
.
4
.
9
.
1
...
...
scripts/boost.build
0 → 100755
View file @
5a83593a
#!/bin/bash
source
"
$(
dirname
$0
)
/../lib/libem.bash"
# :TODO: detect compiler
TOOLSET
=
gcc
function
em.configure
()
{
cd
"
${
EM_SRCDIR
}
"
"
${
EM_SRCDIR
}
"
/bootstrap.sh
\
--prefix
=
"
${
PREFIX
}
"
\
--with-toolset
=
${
TOOLSET
}
\
--with-libraries
=
all
\
--with-python-root
=
"
${
PYTHON_PREFIX
}
"
\
||
exit
1
}
function
em.build
()
{
cd
"
${
EM_SRCDIR
}
"
./b2
\
--build-type
=
minimal
\
--build-dir
=
"
${
EM_BUILDDIR
}
"
\
--layout
=
system
\
variant
=
release
\
link
=
static
\
threading
=
multi
\
stage
}
function
em.install
()
{
cd
"
${
EM_SRCDIR
}
"
./b2
\
--build-type
=
minimal
\
--build-dir
=
"
${
EM_BUILDDIR
}
"
\
--layout
=
system
\
variant
=
release
\
link
=
static
\
threading
=
multi
\
install
}
em.add_to_family
'Compiler'
em.set_build_dependencies
"
${
COMPILER
}
"
'python'
em.make_all
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