@@ -59,7 +59,7 @@ Currently, one floating patch is needed to build S390 asm files.
59
59
60
60
Cherry pick it from the previous commit.
61
61
```sh
62
- $ git cherry-pick 094465362758ebf967b33c84d5c96230b46a34b3
62
+ $ git cherry-pick 45b9f5df6ff1548f01ed646ebee75e3f0873cefd
63
63
```
64
64
### 3. Execute ` make ` in ` deps/openssl/config ` directory
65
65
@@ -70,16 +70,6 @@ Just type `make` then it generates all platform dependent files into
70
70
$ cd deps/openssl/config; make
71
71
```
72
72
73
- The commit message can be
74
- ```
75
- commit 8cb1de45c60f2d520551166610115531db673518
76
- Author: Shigeki Ohtsu <ohtsu@ohtsu.org>
77
- Date: Thu Mar 29 16:46:11 2018 +0900
78
-
79
- deps: update archs files for OpenSSL-1.1.0
80
-
81
- `cd deps/openssl/config; make` updates all archs dependant files.
82
- ```
83
73
### 4. Check diffs
84
74
85
75
Check diffs if updates are right. Even if no updates in openssl
@@ -96,14 +86,18 @@ used for `nmake` command. The `make` command in the step 2 above uses
96
86
created. When source files or build options are updated in Windows,
97
87
it needs to change these two Makefiles by hand. If you are not sure,
98
88
please ask @shigeki for details.
89
+
99
90
### 5. Commit and make test
100
91
101
92
Update all architecture dependent files. Do not forget to git add or remove
102
- files if they are changed before commit.
93
+ files if they are changed before commit:
103
94
``` sh
104
- $ cd deps/openssl/openssl/config
105
- $ git add archs
106
- $ git commit archs
95
+ $ git add deps/openssl/config/archs
96
+ $ git add deps/openssl/openssl/crypto/include/internal/bn_conf.h
97
+ $ git add deps/openssl/openssl/crypto/include/internal/dso_conf.h
98
+ $ git add deps/openssl/openssl/include/openssl/opensslconf.h
99
+ $ git add deps/openssl/openssl/.gitignore
100
+ $ git commit
107
101
```
108
102
109
103
The commit message can be
@@ -113,6 +107,8 @@ The commit message can be
113
107
Date: Thu Mar 29 16:46:11 2018 +0900
114
108
115
109
deps: update archs files for OpenSSL-1.1.0
110
+
111
+ `cd deps/openssl/config; make` updates all archs dependant files.
116
112
```
117
113
118
114
Finally, build Node and run tests.
0 commit comments