Project

General

Profile

Preparing a Mac machine for Bilder » History » Version 35

John Cary, 01/18/2019 08:02 PM

1 2 Redmine Admin
# Preparing a Mac machine for Bilder #
2 1 Redmine Admin
3 24 John Cary
__If all you need is python and sphinx__ (e.g., for builds of documentation), then you need only
4
5
* XCode with command line tools
6
* Latex installed as noted below
7
8
and then you can add the arguments,  -W python, and your installed Python and CMake will be used if your path is correct.
9
10
11 2 Redmine Admin
## Bilder on Darwin ##
12 1 Redmine Admin
13 16 John Cary
Darwin comes with bash, so it is Bilder ready for the most part.
14 1 Redmine Admin
15 16 John Cary
### OS X Versions ###
16 1 Redmine Admin
17 16 John Cary
Yosemite's XCode that supports C++ 11 by default.
18 1 Redmine Admin
19 16 John Cary
El Capitan's clang compiler supports OpenMP.
20
21 1 Redmine Admin
## Case insensitive file system ##
22
23
We have noted and filed bugs for CMake errors on OS X when using the case-sensitive file system. To fix we use the case-insensitive file system. There may be problems with various packages and the case-insensitive file system.
24
25 2 Redmine Admin
## C and C++ compilers and Xcode command line tools ##
26 1 Redmine Admin
27
Install Xcode. To obtain version 6, visit https://developer.apple.com/xcode/download, then at the bottom third of the page, click on the "Additional Tools" link . Sign in with your Apple ID.  
28
29
~~~~~~
30 31 John Cary
sudo xcode-select --install
31 1 Redmine Admin
~~~~~~
32
33 35 John Cary
With mojave, one must additionally
34
35
~~~~~~
36
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
37
~~~~~~
38
39
But https://apple.stackexchange.com/questions/337940/why-is-usr-include-missing-i-have-xcode-and-command-line-tools-installed-moja says it is better to use `xcrun --show-sdk-path` to figure this out.
40
41 1 Redmine Admin
## HomeBrew ##
42
43
One must select a non-OSX package manager for some additional packages. The candidates are HomeBrew, MacPorts, and Fink, with the HomeBrew being our recommendation at this time, as it is active, and it has the philosophy of not building extraneous stuff that is already present on OSX, which MacPorts tends to do, thus using up more disk space.  HomeBrew also installs packages in their own subdirs with links to other places in /opt, thus making removal a matter removing a directory and then removing broken links in /opt/homebrew.
44
45 14 John Cary
HomeBrew requires that one not have root privileges.  So we make the directory into which we can write:
46 1 Redmine Admin
47
~~~~~~
48 29 John Cary
sudo -s
49
mkdir -p /opt/homebrew
50
chgrp -R admin /opt
51
chmod -R 775 /opt
52
chmod -R 2775 /opt/homebrew
53
exit
54 14 John Cary
~~~~~~
55
56
and then we work as nonroot:
57
58
~~~~~~
59 29 John Cary
cd /opt
60
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
61
chmod -R a+rX /opt/homebrew
62
find /opt/homebrew -type l -exec chmod -h a+r '{}' \;
63 14 John Cary
~~~~~~
64 1 Redmine Admin
65 15 John Cary
and finally as root to pick up the paths by default:
66 14 John Cary
67 1 Redmine Admin
~~~~~~
68 29 John Cary
sudo -s
69
echo "/opt/homebrew/bin" > /etc/paths.d/homebrew
70
echo "/opt/homebrew/share/man" > /etc/manpaths.d/homebrew
71
chmod a+r /etc/paths.d/homebrew /etc/manpaths.d/homebrew
72
exit
73 1 Redmine Admin
~~~~~~
74
75
Get the required packages...
76
77
~~~~~~
78 29 John Cary
brew install gnupg libpng freetype gd ghostscript
79 1 Redmine Admin
~~~~~~
80
81 16 John Cary
Nice to have:
82 1 Redmine Admin
83 16 John Cary
~~~~~~
84 29 John Cary
brew install imagemagick
85 16 John Cary
~~~~~~
86
87 25 David Howdle
For Qt5:
88
89
~~~~~~
90 29 John Cary
brew install bison flex gperf libcapn
91 25 David Howdle
~~~~~~
92
93
If you receive a error regarding ruby version:
94
95
~~~~~~
96 29 John Cary
brew install ruby@2.3
97 25 David Howdle
~~~~~~
98
99 1 Redmine Admin
If permissions end up wrong, the commands
100
101
~~~~~~
102 29 John Cary
chmod -R a+rX /opt/homebrew
103
find /opt/homebrew -type l -exec chmod -h a+r '{}' \;
104 1 Redmine Admin
~~~~~~
105
106
may help.
107
108 16 John Cary
To get fortran and a more recent version of the gcc compiler
109 1 Redmine Admin
110 14 John Cary
~~~~~~
111 29 John Cary
brew install gcc@6 --with-fortran
112 33 Tech-X Corporation
113
With gcc 6.5 (11/18), gfortran is installed with gcc.  You will receive this informational message if you use the above command:
114
~~~
115
Warning: gcc@6: this formula has no --with-fortran option so it will be ignored!
116
~~~
117 1 Redmine Admin
~~~~~~
118 8 Redmine Admin
119 1 Redmine Admin
120
121
## LaTeX ##
122
123
Those with sufficient hard drive space (3.4GB after install) may wish to download the full MacTeX package from <http://www.tug.org/mactex/downloading.html>. After installing, one can see the 'README ME FIRST.pdf' in /Applications/Tex. You will likely need to add /usr/texbin to your path:
124
125
~~~~~~
126 29 John Cary
setenv PATH /usr/texbin:${PATH}  # For tcsh
127
export PATH=/usr/texbin:${PATH}  # For bash
128 1 Redmine Admin
~~~~~~
129 13 Redmine Admin
130 1 Redmine Admin
For those who like GUIs, the !TeXworks in /Applications/TeX/TeXworks should work fine.
131
132 13 Redmine Admin
For those with limited space, install BasicTeX from <https://tug.org/mactex/morepackages.html>. Add to your PATH:
133
134
~~~~~~
135 32 John Cary
    /usr/local/texlive/2017/bin/universal-darwin/
136 13 Redmine Admin
~~~~~~
137
138 32 John Cary
and then install the packages noted at
139 1 Redmine Admin
140 32 John Cary
[[LaTeX packages needed by Bilder]]
141 29 John Cary
142 32 John Cary
You may need to use sudo.
143 1 Redmine Admin
144
~~~~~~
145 32 John Cary
sudo tlmgr update --self
146
sudo tlmgr install <needed packages>
147 1 Redmine Admin
~~~~~~
148 29 John Cary
149 32 John Cary
and then used the autoupdate feature to get any additionally needed packages.  This minimal installation is 230 M instead of the usual 2GB.
150
151 1 Redmine Admin
152
## Disable spindump ##
153
154
for faster compilations via
155
156
~~~~~~
157
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.spindump.plist
158 29 John Cary
~~~~~~
159 11 Redmine Admin
160 34 John Cary
## LLVM-Clang ##
161
162
LLVM-Clang (aka LlvmClang) is different from AppleClang.  It has support for target attributes and openmp, and provides a build chain for high-performance computing.  We are currently using 7.0.0, which can be obtained from http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz.  It is installed via, e.g.,
163
164
  cd /opt; sudo tar xf /path/to/clang+llvm-7.0.0-x86_64-apple-darwin.tar.gz
165
166
and then fixing up permissions as needed (e.g., chmod -R a+rX).
167
168 11 Redmine Admin
## Java ##
169
170
You will need to install java by invoking the executable in any way such as...
171
172
~~~~~~
173
java -version
174
~~~~~~
175
176 1 Redmine Admin
Follow the instructions in the dialog that takes you to the Oracle website and choose the latest version to download.  (as of Nov 2015 this is 1.8)
177
178
## HostName ##
179
180
For bilder to properly send emails the fully qualified hostname must set on the machine. To check this try...
181 2 Redmine Admin
182 1 Redmine Admin
~~~~~~
183 31 John Cary
hostname -f
184 29 John Cary
~~~~~~
185 1 Redmine Admin
186
this should return machinename.domainname.com rather than just machinename.  If it does not, then set the hostname of the machine by typing the following commands.
187
188
~~~~~~
189
sudo scutil --set ComputerName "machinename"
190
sudo scutil --set LocalHostName "machinename"
191
sudo scutil --set HostName "machinename.domainname.com"
192
dscacheutil -flushcache
193
~~~~~~
194
195
Restart your Mac after this.
196
197
## Power Saving Modes ##
198
199
For build machines that are not personal machines, disabling certain options will help in connectivity and responsiveness:
200
201
~~~~~~
202
Under Spotlight
203
 - disabled the main HD. (multiple mdworkers taking up a lot of cpu.)
204
~~~~~~
205
206
~~~~~~
207
Under Energy Saver
208
 - Computer sleep: Set to never
209
 - Unchecked Put hard disks to sleep when possible
210
 - Unchecked Wake for network access
211
~~~~~~
212
213
&nbsp;
214
&nbsp;
215
&nbsp;
216
&nbsp;
217
&nbsp;
218
&nbsp;
219
&nbsp;
220
&nbsp;
221
&nbsp;
222
&nbsp;
223
224 29 John Cary
---
225
226
---
227
228 31 John Cary
## X11 ##
229 1 Redmine Admin
230 31 John Cary
X11 should not be needed, but if it is needed:
231
232
Install [XQuartz X11](http://xquartz.macosforge.org/landing/).
233
234
Create a symbolic link so that the X11 headers can be found by the compiler:
235
236
~~~~~~
237
sudo ln -s /opt/X11/include/X11 /usr/local/include/X11
238
~~~~~~
239
240 1 Redmine Admin
# DEPRECATED INSTRUCTIONS #
241 31 John Cary
242
243
## Other gfortran options (besides HomeBrew) ##
244
245
### Option 2: HPC ###
246
247
Install gfortran from [SourceForge HPC](http://hpc.sourceforge.net).  (Do not also install the other gcc compilers.)
248
249
As of March 29, 2015, the version is 4.9.0.
250
251
Install via
252
253
~~~~~~
254
$ tar xzf gfortran-4.9-bin.tar.gz -C /
255
~~~~~~
256
257
### Option 3: GNU ###
258
259
Install gfortran using the installer from <http://gcc.gnu.org/wiki/GFortranBinaries>.
260
261
As of March 29, 2015, the version is 4.9.0.
262
263
The binaries will end up being installed in /usr/local/bin
264
265 30 John Cary
266
## Git ##
267
268
If any repository package requires Git protocol, then for Lion and earlier you may need Git from <http://git-scm.com/download/mac> and add /usr/local/git/bin to your path.
269 11 Redmine Admin
270 1 Redmine Admin
271 10 Redmine Admin
### Macports ### 
272
273
This provides wget, freetype, and other utilities. Get macports from <http://www.macports.org/install.php> and install.
274 11 Redmine Admin
275
Note: Before proceeding with the installation of various macports packages noted below on Lion machines with Xcode 4.3, one needs to run
276
277 10 Redmine Admin
~~~~~~
278 29 John Cary
sudo xcode-select -switch /Applications/Xcode.app
279 10 Redmine Admin
~~~~~~
280
281
Otherwise, there will be an error installing zlib during the wget installation below.
282 11 Redmine Admin
283
After the macports installation, do
284 1 Redmine Admin
285
~~~~~~
286 29 John Cary
sudo port install wget
287
sudo port install ImageMagick +no_x11
288
sudo port install f2c
289 1 Redmine Admin
~~~~~~
290
291
292
### XCode ###
293
### Lion ###
294 11 Redmine Admin
295 1 Redmine Admin
On Lion, the command line compilers are not installed automatically. After installing Xcode, navigate to the 
296
Preferences->Download dialog 
297
and install the Command Line Tools. The dialog is.. 
298 2 Redmine Admin
299 1 Redmine Admin
!screenShotCommandLineTools.png!
300
301
or from the command line do
302
303 11 Redmine Admin
~~~~~~
304 29 John Cary
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
305
xcodebuild
306 1 Redmine Admin
      (hit agree)
307
~~~~~~
308
309
You may subsequently need to build your first package with sudo in order to accept the Xcode licenses.
310
311
### Mountain Lion ### 
312
313
Same as Mavericks?
314
315
### Mavericks ###
316
317 2 Redmine Admin
~~~~~~
318 29 John Cary
sudo xcode-select --install
319 1 Redmine Admin
~~~~~~
320
321
322
## Java ##
323
324
(The below does not apply to yosemite.)
325
326
The cmake build may fail due to missing java headers linked to in /System/Library/Frameworks/JavaVM.framework/Headers. To fix:
327
328
~~~~~~
329 29 John Cary
cd /System/Library/Frameworks/JavaVM.framework/Headers
330
sudo mv jni.h jni.h.missing
331 1 Redmine Admin
~~~~~~