Project

General

Profile

Preparing a Mac machine for Bilder » History » Version 79

John Cary, 05/29/2021 11:26 AM

1 2 Redmine Admin
# Preparing a Mac machine for Bilder #
2 1 Redmine Admin
3 70 John Cary
*NOTE: as of Catalina, installing in /opt is no longer an option, so we have moved to /usr/local*
4
5 24 John Cary
__If all you need is python and sphinx__ (e.g., for builds of documentation), then you need only
6
7
* XCode with command line tools
8
* Latex installed as noted below
9
10
and then you can add the arguments,  -W python, and your installed Python and CMake will be used if your path is correct.
11
12
13 2 Redmine Admin
## Bilder on Darwin ##
14 1 Redmine Admin
15 16 John Cary
Darwin comes with bash, so it is Bilder ready for the most part.
16 1 Redmine Admin
17 16 John Cary
### OS X Versions ###
18 1 Redmine Admin
19 16 John Cary
Yosemite's XCode that supports C++ 11 by default.
20 1 Redmine Admin
21 16 John Cary
El Capitan's clang compiler supports OpenMP.
22
23 1 Redmine Admin
## Case insensitive file system ##
24
25
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.
26
27 2 Redmine Admin
## C and C++ compilers and Xcode command line tools ##
28 1 Redmine Admin
29 64 Nathan Neri
Install Xcode. To obtain version 10.3 (10.x is required for c++17), 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.  
30 1 Redmine Admin
31
~~~~~~
32 31 John Cary
sudo xcode-select --install
33 1 Redmine Admin
~~~~~~
34
35 63 David Alexander
With mojave, one must additionally open the XCode app and install the command line tools or execute this command:
36 35 John Cary
37
~~~~~~
38
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
39
~~~~~~
40
41 65 David Alexander
or use the graphical interface with
42
43
~~~~~~
44 66 John Cary
open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg
45 65 David Alexander
~~~~~~
46
47 69 John Cary
Not doing this may give you an error like
48
49
~~~~~~
50
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error:146:
51
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__errc:191:43: error: use of undeclared identifier 'EOWNERDEAD'
52
    owner_dead                          = EOWNERDEAD,
53
~~~~~~
54
55 65 David Alexander
The exact name of the pkg might be different in the future. This page 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 find the default SDK path and then one can find the exact package name.
56 35 John Cary
57 1 Redmine Admin
## HomeBrew ##
58
59 70 John Cary
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 /usr/local/homebrew, thus making removal a matter removing a directory and then removing broken links in /usr/local/homebrew.
60 1 Redmine Admin
61 14 John Cary
HomeBrew requires that one not have root privileges.  So we make the directory into which we can write:
62 1 Redmine Admin
63
~~~~~~
64 29 John Cary
sudo -s
65 70 John Cary
mkdir -p /usr/local/homebrew
66
chgrp -R admin /usr/local/homebrew
67 1 Redmine Admin
chmod -R 2775 /usr/local/homebrew
68 77 John Cary
mkdir -p /usr/local/opt
69
chgrp -R admin /usr/local/opt
70
chmod -R 2775 /usr/local/opt
71 1 Redmine Admin
exit
72 14 John Cary
~~~~~~
73
74 1 Redmine Admin
and then we work as nonroot:
75
76 70 John Cary
~~~~~~
77 57 John Cary
cd /usr/local
78
git clone https://github.com/Homebrew/brew.git homebrew
79 39 David Alexander
~~~~~~
80
81
~~~~~~
82 70 John Cary
chmod -R a+rX /usr/local/homebrew
83
find /usr/local/homebrew -type l -exec chmod -h a+r '{}' \;
84 1 Redmine Admin
~~~~~~
85
86 73 Benjamin Cowan
These last two lines can be reused at anytime there is a permissions problem.
87 1 Redmine Admin
88 39 David Alexander
As root again execute these lines to pick up some paths in the defaults paths:
89
90 1 Redmine Admin
~~~~~~
91 29 John Cary
sudo -s
92 70 John Cary
echo "/usr/local/homebrew/bin" > /etc/paths.d/homebrew
93
echo "/usr/local/homebrew/share/man" > /etc/manpaths.d/homebrew
94 29 John Cary
chmod a+r /etc/paths.d/homebrew /etc/manpaths.d/homebrew
95
exit
96 1 Redmine Admin
~~~~~~
97
98
Get the required packages...
99
100
~~~~~~
101 77 John Cary
brew install svn gnupg libpng freetype gd ghostscript ninja wget
102 1 Redmine Admin
~~~~~~
103
104 16 John Cary
Nice to have:
105 1 Redmine Admin
106 16 John Cary
~~~~~~
107 29 John Cary
brew install imagemagick
108 16 John Cary
~~~~~~
109
110 45 Nathan Neri
git large file support (for VisIt)
111
112
~~~~~~
113
brew install git-lfs
114 56 Nathan Neri
git lfs install --force --skip-smudge
115 45 Nathan Neri
~~~~~~
116
117 25 David Howdle
For Qt5:
118
119
~~~~~~
120
brew install bison flex gperf libcapn
121 39 David Alexander
~~~~~~
122 1 Redmine Admin
123 79 John Cary
Fortran comes with the homebrew gcc compiler:
124 75 Tech-X Corporation
125
~~~~~~
126 62 John Cary
brew install gcc@8
127 1 Redmine Admin
~~~~~~
128
129 79 John Cary
However, it does not work an Apple Silicon (M1), so you must instead get it from https://github.com/fxcoudert/gfortran-for-macOS/releases/tag/11-arm-alpha2.
130 1 Redmine Admin
131 39 David Alexander
OPTIONAL:
132
133
If you receive an error regarding ruby version:
134
135
~~~~~~
136
brew install ruby@2.3
137
~~~~~~
138
139
may help.
140
141 1 Redmine Admin
142
## LaTeX ##
143
144
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:
145 29 John Cary
146
~~~~~~
147 1 Redmine Admin
setenv PATH /usr/texbin:${PATH}  # For tcsh
148 13 Redmine Admin
export PATH=/usr/texbin:${PATH}  # For bash
149 1 Redmine Admin
~~~~~~
150
151 13 Redmine Admin
For those who like GUIs, the !TeXworks in /Applications/TeX/TeXworks should work fine.
152
153
For those with limited space, install BasicTeX from <https://tug.org/mactex/morepackages.html>. Add to your PATH:
154 32 John Cary
155 13 Redmine Admin
~~~~~~
156
    /usr/local/texlive/2017/bin/universal-darwin/
157 32 John Cary
~~~~~~
158 1 Redmine Admin
159 32 John Cary
and then install the packages noted at
160 29 John Cary
161 32 John Cary
[[LaTeX packages needed by Bilder]]
162 1 Redmine Admin
163
You may need to use sudo.
164 32 John Cary
165
~~~~~~
166 1 Redmine Admin
sudo tlmgr update --self
167 29 John Cary
sudo tlmgr install <needed packages>
168 32 John Cary
~~~~~~
169
170 1 Redmine Admin
and then used the autoupdate feature to get any additionally needed packages.  This minimal installation is 230 M instead of the usual 2GB.
171
172
173
## Disable spindump ##
174
175
for faster compilations via
176
177 58 John Cary
~~~~~~
178
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.spindump.plist
179
~~~~~~
180 67 David Alexander
181 58 John Cary
## LLVM-Clang ##
182
183
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.  Check out the llvm-project of your chosen version.
184
185
We use homebrew to install this with
186
187 61 John Cary
~~~~~~
188 71 David Alexander
brew install llvm
189 1 Redmine Admin
~~~~~~
190
191 78 John Cary
As of May 28, 2021, the llvm version is 12.0.0.
192 1 Redmine Admin
193 78 John Cary
ALTERNATIVE
194 1 Redmine Admin
195 78 John Cary
If brew does not work (e.g., it is not available for M1), then you can download a release from https://github.com/llvm/llvm-project/releases.
196 1 Redmine Admin
197
To configure and build:
198 48 Nathan Neri
199 49 Nathan Neri
~~~~~~
200 77 John Cary
tar xf llvmorg-12.0.0.tar.gz
201
cd llvm-project-llvmorg-12.0.0
202 1 Redmine Admin
mkdir build
203
cd build
204
cmake ../llvm -DLLVM_ENABLE_PROJECTS="clang;openmp;libcxx;libcxxabi" -DLLVM_ENABLE_RTTI:BOOL=ON -DLLVM_ENABLE_EH:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH="/usr/local/opt/llvm-<Version>/install" -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
205 77 John Cary
make # Add appropriate -j argument for the machine to build faster
206 54 David Alexander
          # with -j 8 on qamojavellvm the build and installation took a little under an hour
207
make install
208 48 Nathan Neri
~~~~~~
209
210
Bilder will look in /opt/llvmclang/bin for llvm binaries (as well as $LLVM_DIR/bin, and your installation dir/bin, in case you need to keep multiple versions for different builds), so we set a link to the installation directory in the chosen version of llvm:
211 43 Tech-X Corporation
212 44 Tech-X Corporation
~~~~~~
213 78 John Cary
cd /usr/local/opt
214 48 Nathan Neri
sudo ln -s llvm-<Version>/install llvmclang
215 44 Tech-X Corporation
~~~~~~
216 43 Tech-X Corporation
217 11 Redmine Admin
## Java ##
218
219
You will need to install java by invoking the executable in any way such as...
220
221
~~~~~~
222
java -version
223 1 Redmine Admin
~~~~~~
224
225 74 Tech-X Corporation
Follow the instructions in the dialog that takes you to the Oracle website and choose the latest version to download.  (As of March 2021 this is 16.)
226
227
Chose the macOS installer from
228
https://www.oracle.com/java/technologies/javase-jdk16-downloads.html
229 1 Redmine Admin
230
## HostName ##
231 2 Redmine Admin
232 1 Redmine Admin
For bilder to properly send emails the fully qualified hostname must set on the machine. To check this try...
233 31 John Cary
234 29 John Cary
~~~~~~
235 1 Redmine Admin
hostname -f
236
~~~~~~
237
238
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.
239
240
~~~~~~
241
sudo scutil --set ComputerName "machinename"
242
sudo scutil --set LocalHostName "machinename"
243
sudo scutil --set HostName "machinename.domainname.com"
244
dscacheutil -flushcache
245
~~~~~~
246
247
Restart your Mac after this.
248
249
## Power Saving Modes ##
250
251
For build machines that are not personal machines, disabling certain options will help in connectivity and responsiveness:
252
253
~~~~~~
254
Under Spotlight
255
 - disabled the main HD. (multiple mdworkers taking up a lot of cpu.)
256
~~~~~~
257
258
~~~~~~
259
Under Energy Saver
260
 - Computer sleep: Set to never
261
 - Unchecked Put hard disks to sleep when possible
262
 - Unchecked Wake for network access
263
~~~~~~
264
265
&nbsp;
266
&nbsp;
267
&nbsp;
268
&nbsp;
269
&nbsp;
270
&nbsp;
271
&nbsp;
272
&nbsp;
273
&nbsp;
274 29 John Cary
&nbsp;
275
276
---
277
278 31 John Cary
---
279 1 Redmine Admin
280 31 John Cary
## X11 ##
281
282
X11 should not be needed, but if it is needed:
283
284
Install [XQuartz X11](http://xquartz.macosforge.org/landing/).
285
286
Create a symbolic link so that the X11 headers can be found by the compiler:
287
288
~~~~~~
289
sudo ln -s /opt/X11/include/X11 /usr/local/include/X11
290 1 Redmine Admin
~~~~~~
291 31 John Cary
292
# DEPRECATED INSTRUCTIONS #
293
294
295
## Other gfortran options (besides HomeBrew) ##
296
297
### Option 2: HPC ###
298
299
Install gfortran from [SourceForge HPC](http://hpc.sourceforge.net).  (Do not also install the other gcc compilers.)
300
301
As of March 29, 2015, the version is 4.9.0.
302
303
Install via
304
305
~~~~~~
306
$ tar xzf gfortran-4.9-bin.tar.gz -C /
307
~~~~~~
308
309
### Option 3: GNU ###
310
311
Install gfortran using the installer from <http://gcc.gnu.org/wiki/GFortranBinaries>.
312
313
As of March 29, 2015, the version is 4.9.0.
314
315 30 John Cary
The binaries will end up being installed in /usr/local/bin
316
317
318
## Git ##
319 11 Redmine Admin
320 1 Redmine Admin
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.
321 10 Redmine Admin
322
323
### Macports ### 
324 11 Redmine Admin
325
This provides wget, freetype, and other utilities. Get macports from <http://www.macports.org/install.php> and install.
326
327 10 Redmine Admin
Note: Before proceeding with the installation of various macports packages noted below on Lion machines with Xcode 4.3, one needs to run
328 29 John Cary
329 10 Redmine Admin
~~~~~~
330
sudo xcode-select -switch /Applications/Xcode.app
331
~~~~~~
332 11 Redmine Admin
333
Otherwise, there will be an error installing zlib during the wget installation below.
334 1 Redmine Admin
335
After the macports installation, do
336 29 John Cary
337
~~~~~~
338
sudo port install wget
339 1 Redmine Admin
sudo port install ImageMagick +no_x11
340
sudo port install f2c
341
~~~~~~
342
343
344 11 Redmine Admin
### XCode ###
345 1 Redmine Admin
### Lion ###
346
347
On Lion, the command line compilers are not installed automatically. After installing Xcode, navigate to the 
348 2 Redmine Admin
Preferences->Download dialog 
349 1 Redmine Admin
and install the Command Line Tools. The dialog is.. 
350
351
!screenShotCommandLineTools.png!
352
353 11 Redmine Admin
or from the command line do
354 29 John Cary
355
~~~~~~
356 1 Redmine Admin
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
357
xcodebuild
358
      (hit agree)
359
~~~~~~
360
361
You may subsequently need to build your first package with sudo in order to accept the Xcode licenses.
362
363
### Mountain Lion ### 
364
365
Same as Mavericks?
366
367 2 Redmine Admin
### Mavericks ###
368 29 John Cary
369 1 Redmine Admin
~~~~~~
370
sudo xcode-select --install
371
~~~~~~
372
373
374
## Java ##
375
376
(The below does not apply to yosemite.)
377
378
The cmake build may fail due to missing java headers linked to in /System/Library/Frameworks/JavaVM.framework/Headers. To fix:
379 29 John Cary
380
~~~~~~
381 1 Redmine Admin
cd /System/Library/Frameworks/JavaVM.framework/Headers
382
sudo mv jni.h jni.h.missing
383
~~~~~~