Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
boost
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
boost
Commits
68a654f7
Commit
68a654f7
authored
Mar 13, 2020
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patched boost to work with 'm' version of Python
parent
8ec59b47
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
Makefile
Makefile
+2
-1
boost_1_72_0-python_m.patch
boost_1_72_0-python_m.patch
+12
-0
No files found.
Makefile
View file @
68a654f7
all
:
all
:
tar
xf boost_1_72_0.tar.bz2
tar
xf boost_1_72_0.tar.bz2
patch
-Np1
-d
boost_1_72_0 < boost_1_72_0-python_m.patch
cd
boost_1_72_0
&&
./bootstrap.sh
--prefix
=
/usr
--with-python
=
python3
cd
boost_1_72_0
&&
./bootstrap.sh
--prefix
=
/usr
--with-python
=
python3
cd
boost_1_72_0
&&
./b2 stage
threading
=
multi
link
=
shared
cd
boost_1_72_0
&&
./b2 stage
threading
=
multi
link
=
shared
cd
boost_1_72_0/tools/build/test
&&
python3 test_all.py
cd
boost_1_72_0/tools/build/test
&&
python3 test_all.py
...
@@ -8,7 +9,7 @@ all:
...
@@ -8,7 +9,7 @@ all:
temporary
:
temporary
:
tar
xf boost_1_72_0.tar.bz2
tar
xf boost_1_72_0.tar.bz2
cd
boost_1_72_0
&&
./bootstrap.sh
--prefix
=
/usr
--with-python
=
python3
cd
boost_1_72_0
&&
./bootstrap.sh
--prefix
=
/usr
cd
boost_1_72_0
&&
./b2 stage
threading
=
multi
link
=
shared
cd
boost_1_72_0
&&
./b2 stage
threading
=
multi
link
=
shared
clean
:
clean
:
...
...
boost_1_72_0-python_m.patch
0 → 100644
View file @
68a654f7
diff -uNr boost_1_72_0/tools/build/src/tools/python.jam boost_1_72_0-python_m/tools/build/src/tools/python.jam
--- boost_1_72_0/tools/build/src/tools/python.jam 2019-12-10 10:50:17.000000000 +1030
+++ boost_1_72_0-python_m/tools/build/src/tools/python.jam 2020-03-13 20:01:02.548352570 +1030
@@ -544,7 +544,7 @@
}
else
{
- includes ?= $(prefix)/include/python$(version) ;
+ includes ?= $(prefix)/include/python$(version)m ;
local lib = $(exec-prefix)/lib ;
libraries ?= $(lib)/python$(version)/config $(lib) ;
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