File tree 3 files changed +20
-14
lines changed
3 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,17 @@ prequisites are provided below \.\.\.
36
36
$ sudo yum install expat-devel fftw-devel openssl-devel # RedHat 7 and similar
37
37
$ sudo apt install libexpat-dev libfftw3-dev libssl-dev zlib1g-dev # Debian 9 and similar
38
38
```
39
- And on windows using [ vcpkg] ( https://github.com/microsoft/vcpkg ) .
39
+ and on windows using [ vcpkg] ( https://github.com/microsoft/vcpkg ) \.\.\ .
40
40
``` batchfile
41
41
> vcpkg install openssl fftw3 zlib expat pthreads --triplet x64-windows-static
42
42
```
43
+ or on mac using [ brew] ( https://brew.sh )
44
+ ``` bash
45
+ $ brew install openssl
46
+ $ brew install fftw
47
+ ```
48
+ The expat library should already be present on MacOS once the compiler install
49
+ command ` xcode-select --install ` has been run.
43
50
44
51
## Build and Install
45
52
Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ the following commands. Pressing Y as needed.
61
61
========================
62
62
63
63
$ cd
64
- $ mkdir svn
65
- $ cd svn
66
- $ svn co https://saturn.physics.uiowa.edu/svn/das2/core/stable/libdas2_3
67
- $ cd libdas2
64
+ $ mkdir git
65
+ $ cd git
66
+ $ git clone https://github.com/das-developers/das2C.git
67
+ $ cd das2C
68
68
69
69
70
70
4. Set environment variables
Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ installer for which will expect mouse clicks to proceeds.
27
27
28
28
After installing XCode check that you have the tools run:
29
29
30
- $ svn -version
30
+ $ git -version
31
31
32
32
and you should see a bit of diagnostic information about the subversion tool
33
- printed to the screen. If instead you see the message: "-bash: svn : command
33
+ printed to the screen. If instead you see the message: "-bash: git : command
34
34
not found", then svn is not installed.
35
35
36
36
To check that you have a compiler run
37
37
38
- $ gcc --version
38
+ $ clang --version
39
39
40
40
and you should see a small bit of diagnostic information about the compiler,
41
41
if instead the output is "-bash: gcc: command not found" then gcc is not
@@ -57,8 +57,7 @@ It install homebrew (from https://brew.sh ):
57
57
To test that it's installed run:
58
58
59
59
$ brew --version
60
-
61
-
60
+
62
61
3. Install prerequisite libraires
63
62
=================================
64
63
To install the header files and libraies needed to compile libdas2 run
@@ -72,10 +71,10 @@ the following commands:
72
71
========================
73
72
74
73
$ cd
75
- $ mkdir svn
76
- $ cd svn
77
- $ svn co https://saturn.physics.uiowa.edu/svn/das2/core/stable/libdas2_3
78
- $ cd libdas2
74
+ $ mkdir git
75
+ $ cd git
76
+ $ git clone https://github.com/das-developers/das2C.git
77
+ $ cd das2C
79
78
80
79
4. Set environment variables
81
80
============================
You can’t perform that action at this time.
0 commit comments