29 lines
855 B
Diff
29 lines
855 B
Diff
|
--- a/tools/v8_gypfiles/v8.gyp
|
||
|
+++ b/tools/v8_gypfiles/v8.gyp
|
||
|
@@ -1266,6 +1266,11 @@
|
||
|
['want_separate_host_toolset', {
|
||
|
'toolsets': ['host', 'target'],
|
||
|
}],
|
||
|
+ [ 'host_arch=="mips" or host_arch=="mipsel"', {
|
||
|
+ 'link_settings': {
|
||
|
+ 'libraries': [ '-latomic' ],
|
||
|
+ },
|
||
|
+ }],
|
||
|
['component=="shared_library"', {
|
||
|
'direct_dependent_settings': {
|
||
|
'defines': ['USING_V8_PLATFORM_SHARED'],
|
||
|
--- a/node.gyp
|
||
|
+++ b/node.gyp
|
||
|
@@ -381,6 +381,11 @@
|
||
|
'msvs_disabled_warnings!': [4244],
|
||
|
|
||
|
'conditions': [
|
||
|
+ [ 'host_arch=="mips" or host_arch=="mipsel"', {
|
||
|
+ 'link_settings': {
|
||
|
+ 'libraries': [ '-latomic' ],
|
||
|
+ },
|
||
|
+ }],
|
||
|
[ 'error_on_warn=="true"', {
|
||
|
'cflags': ['-Werror'],
|
||
|
'xcode_settings': {
|