Project

General

Profile

Preparing a Mac machine for Bilder » History » Version 36

Nathan Neri, 01/21/2019 11:41 AM
Fixing formatting and adding section on homebrew qt4.

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 1 Redmine Admin
117 36 Nathan Neri
To get qt 4 (currently needed for Mojave):
118 1 Redmine Admin
119 36 Nathan Neri
~~~
120
brew tap cartr/qt4
121
brew tap-pin cartr/qt4
122
brew install qt@4
123
~~~
124
125
then install qt-webkit and qwt, and copy the frameworks:
126
~~~
127
brew install qwt-qt4
128
brew install qt-webkit@2.3
129
cp -R /opt/homebrew/Cellar/qwt-qt4/6.1.3_1/lib/qwt.framework /opt/homebrea/Cellar/qt\@4/4.8.7_5/lib/
130
cp -R /opt/homebrew/Cellar/qt-webkit\@2.3/2.3.4_1/lib/QtWebKit.framework /opt/homebrew/Cellar/qt\@4/4.8.7_5/lib/
131
~~~
132 1 Redmine Admin
133
## LaTeX ##
134
135
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:
136
137
~~~~~~
138 29 John Cary
setenv PATH /usr/texbin:${PATH}  # For tcsh
139
export PATH=/usr/texbin:${PATH}  # For bash
140 1 Redmine Admin
~~~~~~
141 13 Redmine Admin
142 1 Redmine Admin
For those who like GUIs, the !TeXworks in /Applications/TeX/TeXworks should work fine.
143
144 13 Redmine Admin
For those with limited space, install BasicTeX from <https://tug.org/mactex/morepackages.html>. Add to your PATH:
145
146
~~~~~~
147 32 John Cary
    /usr/local/texlive/2017/bin/universal-darwin/
148 13 Redmine Admin
~~~~~~
149
150 32 John Cary
and then install the packages noted at
151 1 Redmine Admin
152 32 John Cary
[[LaTeX packages needed by Bilder]]
153 29 John Cary
154 32 John Cary
You may need to use sudo.
155 1 Redmine Admin
156
~~~~~~
157 32 John Cary
sudo tlmgr update --self
158
sudo tlmgr install <needed packages>
159 1 Redmine Admin
~~~~~~
160 29 John Cary
161 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.
162
163 1 Redmine Admin
164
## Disable spindump ##
165
166
for faster compilations via
167
168
~~~~~~
169
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.spindump.plist
170 29 John Cary
~~~~~~
171 11 Redmine Admin
172 34 John Cary
## LLVM-Clang ##
173
174
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.,
175
176
  cd /opt; sudo tar xf /path/to/clang+llvm-7.0.0-x86_64-apple-darwin.tar.gz
177
178
and then fixing up permissions as needed (e.g., chmod -R a+rX).
179
180 11 Redmine Admin
## Java ##
181
182
You will need to install java by invoking the executable in any way such as...
183
184
~~~~~~
185
java -version
186
~~~~~~
187
188 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)
189
190
## HostName ##
191
192
For bilder to properly send emails the fully qualified hostname must set on the machine. To check this try...
193 2 Redmine Admin
194 1 Redmine Admin
~~~~~~
195 31 John Cary
hostname -f
196 29 John Cary
~~~~~~
197 1 Redmine Admin
198
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.
199
200
~~~~~~
201
sudo scutil --set ComputerName "machinename"
202
sudo scutil --set LocalHostName "machinename"
203
sudo scutil --set HostName "machinename.domainname.com"
204
dscacheutil -flushcache
205
~~~~~~
206
207
Restart your Mac after this.
208
209
## Power Saving Modes ##
210
211
For build machines that are not personal machines, disabling certain options will help in connectivity and responsiveness:
212
213
~~~~~~
214
Under Spotlight
215
 - disabled the main HD. (multiple mdworkers taking up a lot of cpu.)
216
~~~~~~
217
218
~~~~~~
219
Under Energy Saver
220
 - Computer sleep: Set to never
221
 - Unchecked Put hard disks to sleep when possible
222
 - Unchecked Wake for network access
223
~~~~~~
224
225
&nbsp;
226
&nbsp;
227
&nbsp;
228
&nbsp;
229
&nbsp;
230
&nbsp;
231
&nbsp;
232
&nbsp;
233
&nbsp;
234
&nbsp;
235
236 29 John Cary
---
237
238
---
239
240 31 John Cary
## X11 ##
241 1 Redmine Admin
242 31 John Cary
X11 should not be needed, but if it is needed:
243
244
Install [XQuartz X11](http://xquartz.macosforge.org/landing/).
245
246
Create a symbolic link so that the X11 headers can be found by the compiler:
247
248
~~~~~~
249
sudo ln -s /opt/X11/include/X11 /usr/local/include/X11
250
~~~~~~
251
252 1 Redmine Admin
# DEPRECATED INSTRUCTIONS #
253 31 John Cary
254
255
## Other gfortran options (besides HomeBrew) ##
256
257
### Option 2: HPC ###
258
259
Install gfortran from [SourceForge HPC](http://hpc.sourceforge.net).  (Do not also install the other gcc compilers.)
260
261
As of March 29, 2015, the version is 4.9.0.
262
263
Install via
264
265
~~~~~~
266
$ tar xzf gfortran-4.9-bin.tar.gz -C /
267
~~~~~~
268
269
### Option 3: GNU ###
270
271
Install gfortran using the installer from <http://gcc.gnu.org/wiki/GFortranBinaries>.
272
273
As of March 29, 2015, the version is 4.9.0.
274
275
The binaries will end up being installed in /usr/local/bin
276
277 30 John Cary
278
## Git ##
279
280
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.
281 11 Redmine Admin
282 1 Redmine Admin
283 10 Redmine Admin
### Macports ### 
284
285
This provides wget, freetype, and other utilities. Get macports from <http://www.macports.org/install.php> and install.
286 11 Redmine Admin
287
Note: Before proceeding with the installation of various macports packages noted below on Lion machines with Xcode 4.3, one needs to run
288
289 10 Redmine Admin
~~~~~~
290 29 John Cary
sudo xcode-select -switch /Applications/Xcode.app
291 10 Redmine Admin
~~~~~~
292
293
Otherwise, there will be an error installing zlib during the wget installation below.
294 11 Redmine Admin
295
After the macports installation, do
296 1 Redmine Admin
297
~~~~~~
298 29 John Cary
sudo port install wget
299
sudo port install ImageMagick +no_x11
300
sudo port install f2c
301 1 Redmine Admin
~~~~~~
302
303
304
### XCode ###
305
### Lion ###
306 11 Redmine Admin
307 1 Redmine Admin
On Lion, the command line compilers are not installed automatically. After installing Xcode, navigate to the 
308
Preferences->Download dialog 
309
and install the Command Line Tools. The dialog is.. 
310 2 Redmine Admin
311 1 Redmine Admin
!screenShotCommandLineTools.png!
312
313
or from the command line do
314
315 11 Redmine Admin
~~~~~~
316 29 John Cary
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
317
xcodebuild
318 1 Redmine Admin
      (hit agree)
319
~~~~~~
320
321
You may subsequently need to build your first package with sudo in order to accept the Xcode licenses.
322
323
### Mountain Lion ### 
324
325
Same as Mavericks?
326
327
### Mavericks ###
328
329 2 Redmine Admin
~~~~~~
330 29 John Cary
sudo xcode-select --install
331 1 Redmine Admin
~~~~~~
332
333
334
## Java ##
335
336
(The below does not apply to yosemite.)
337
338
The cmake build may fail due to missing java headers linked to in /System/Library/Frameworks/JavaVM.framework/Headers. To fix:
339
340
~~~~~~
341 29 John Cary
cd /System/Library/Frameworks/JavaVM.framework/Headers
342
sudo mv jni.h jni.h.missing
343 1 Redmine Admin
~~~~~~