aboutsummaryrefslogtreecommitdiffstats
path: root/community/nodejs-current/link-with-libatomic-on-mips32.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/nodejs-current/link-with-libatomic-on-mips32.patch')
-rw-r--r--community/nodejs-current/link-with-libatomic-on-mips32.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/community/nodejs-current/link-with-libatomic-on-mips32.patch b/community/nodejs-current/link-with-libatomic-on-mips32.patch
deleted file mode 100644
index b082c4139a8..00000000000
--- a/community/nodejs-current/link-with-libatomic-on-mips32.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/tools/v8_gypfiles/v8.gyp
-+++ b/tools/v8_gypfiles/v8.gyp
-@@ -1201,6 +1201,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
-@@ -376,6 +376,11 @@
- 'msvs_disabled_warnings!': [4244],
-
- 'conditions': [
-+ [ 'host_arch=="mips" or host_arch=="mipsel"', {
-+ 'link_settings': {
-+ 'libraries': [ '-latomic' ],
-+ },
-+ }],
- [ 'error_on_warn=="true"', {
- 'cflags': ['-Werror'],
- }],