node-sword-interface 1.0.80 → 1.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +2 -12
- package/package.json +1 -1
package/binding.gyp
CHANGED
|
@@ -9,16 +9,6 @@
|
|
|
9
9
|
# 3. Detect the SDK to use (iphoneos or iphonesimulator)
|
|
10
10
|
"ios_sdk": "<!(python3 -c \"import os; print('iphonesimulator' if 'iPhoneSimulator' in os.environ.get('SDKROOT', '') else 'iphoneos')\")"
|
|
11
11
|
},
|
|
12
|
-
"target_defaults": {
|
|
13
|
-
"conditions": [
|
|
14
|
-
["is_ios==1", {
|
|
15
|
-
"xcode_settings": {
|
|
16
|
-
"SDKROOT": "<(ios_sdk)",
|
|
17
|
-
"IPHONEOS_DEPLOYMENT_TARGET": "<(ios_ver)"
|
|
18
|
-
}
|
|
19
|
-
}]
|
|
20
|
-
]
|
|
21
|
-
},
|
|
22
12
|
"targets": [
|
|
23
13
|
{
|
|
24
14
|
'target_name': 'sword',
|
|
@@ -130,8 +120,8 @@
|
|
|
130
120
|
"-dynamiclib",
|
|
131
121
|
"-install_name @rpath/node_sword_interface.framework/node_sword_interface",
|
|
132
122
|
"-undefined dynamic_lookup",
|
|
133
|
-
"-Wl,-bind_at_load",
|
|
134
|
-
"-all_load"
|
|
123
|
+
"-Wl,-bind_at_load,-weak_library,$(BUILT_PRODUCTS_DIR)/nothing.a",
|
|
124
|
+
"-all_load",
|
|
135
125
|
],
|
|
136
126
|
"MACH_O_TYPE": "mh_dylib",
|
|
137
127
|
"PRODUCT_TYPE": "com.apple.product-type.framework"
|