You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this point we need to modify the file _project-config.jam_ to tell the Boost build system to use our MultiTech cross compile toolchain when we build it. To do this, with an editor of your choice, nano, vim, WinSCP, etc., (see Editing Files above) open this file and make the following modifications <mark>highlighted</mark> below. **Note:** Do not copy and paste the entire text below. The bootstrap command generates absolute paths in this file. These must not be replaced.<br/><br/>
At this point we need to modify the file _project-config.jam_ to tell the Boost build system to use our MultiTech cross compile toolchain when we build it. To do this, with an editor of your choice, nano, vim, WinSCP, etc., (see Editing Files above) open this file and make the following modifications indicated below. **Note:** Do not copy and paste the entire text below. The bootstrap command generates absolute paths in this file. These must not be replaced.
82
+
```
83
+
# Boost.Build Configuration
84
+
# Automatically generated by bootstrap.sh
85
+
86
+
import option ;
87
+
import feature ;
88
+
import os ; ### Add this line
89
+
90
+
local HOME = [ os.environ HOME ] ; ### Add this line
91
+
92
+
# Compiler configuration. This definition will be used unless
93
+
# you already have defined some toolsets in your user-config.jam
94
+
# file.
95
+
96
+
### Modify the gcc section to use the cross compiler toolchain
0 commit comments