Skip to content

Commit

Permalink
doc(wiki): Updated Linking to OpenSSL (markdown)
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate authored and rvagg committed Jun 23, 2021
1 parent 3236069 commit c00eb77
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Linking-to-OpenSSL.md
Expand Up @@ -23,6 +23,17 @@ Good native addons should account for both scenarios. It's recommended that you
# header files that were used when building node.
'include_dirs': [
'<(node_root_dir)/deps/openssl/openssl/include'
],
"conditions" : [
["target_arch=='ia32'", {
"include_dirs": [ "<(node_root_dir)/deps/openssl/config/piii" ]
}],
["target_arch=='x64'", {
"include_dirs": [ "<(node_root_dir)/deps/openssl/config/k8" ]
}],
["target_arch=='arm'", {
"include_dirs": [ "<(node_root_dir)/deps/openssl/config/arm" ]
}]
]
}]
]
Expand Down

0 comments on commit c00eb77

Please sign in to comment.