-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the libnode binaries to v0.1.4 release. Update the header files for nodejs-mobile headers specific to each platform. Updated the new name for the iOS framework.
- Loading branch information
1 parent
4fe04f3
commit e3635f3
Showing
319 changed files
with
66,728 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+7.57 MB
...libnode/android/armeabi-v7a/libnode.so.gz → ...oid/libnode/bin/armeabi-v7a/libnode.so.gz
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Do not edit. Generated by the configure script. | ||
{ 'target_defaults': { 'cflags': [], | ||
'default_configuration': 'Release', | ||
'defines': [], | ||
'include_dirs': [], | ||
'libraries': []}, | ||
'variables': { 'OS': 'android', | ||
'arm_float_abi': 'default', | ||
'arm_fpu': 'vfpv3', | ||
'arm_thumb': 0, | ||
'arm_version': '7', | ||
'asan': 0, | ||
'coverage': 'false', | ||
'debug_devtools': 'node', | ||
'debug_http2': 'false', | ||
'debug_nghttp2': 'false', | ||
'force_dynamic_crt': 1, | ||
'host_arch': 'x64', | ||
'icu_small': 'false', | ||
'llvm_version': 0, | ||
'node_byteorder': 'little', | ||
'node_enable_d8': 'false', | ||
'node_enable_v8_vtunejit': 'false', | ||
'node_engine': 'v8', | ||
'node_install_npm': 'true', | ||
'node_module_version': 57, | ||
'node_no_browser_globals': 'false', | ||
'node_prefix': '/', | ||
'node_release_urlbase': '', | ||
'node_shared': 'true', | ||
'node_shared_cares': 'false', | ||
'node_shared_http_parser': 'false', | ||
'node_shared_libuv': 'false', | ||
'node_shared_openssl': 'false', | ||
'node_shared_zlib': 'false', | ||
'node_tag': '', | ||
'node_use_bundled_v8': 'true', | ||
'node_use_dtrace': 'false', | ||
'node_use_etw': 'false', | ||
'node_use_lttng': 'false', | ||
'node_use_openssl': 'true', | ||
'node_use_perfctr': 'false', | ||
'node_use_v8_platform': 'true', | ||
'node_without_node_options': 'false', | ||
'openssl_fips': '', | ||
'openssl_no_asm': 1, | ||
'shlib_suffix': 'so', | ||
'target_arch': 'arm', | ||
'v8_enable_gdbjit': 0, | ||
'v8_enable_i18n_support': 0, | ||
'v8_enable_inspector': 0, | ||
'v8_no_strict_aliasing': 1, | ||
'v8_optimized_debug': 0, | ||
'v8_promise_internal_field_count': 1, | ||
'v8_random_seed': 0, | ||
'v8_trace_maps': 0, | ||
'v8_use_snapshot': 'false', | ||
'want_separate_host_toolset': 0}} |
29 changes: 29 additions & 0 deletions
29
libs/android/libnode/include/node/libplatform/libplatform-export.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2016 the V8 project authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#ifndef V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ | ||
#define V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ | ||
|
||
#if defined(_WIN32) | ||
|
||
#ifdef BUILDING_V8_PLATFORM_SHARED | ||
#define V8_PLATFORM_EXPORT __declspec(dllexport) | ||
#elif USING_V8_PLATFORM_SHARED | ||
#define V8_PLATFORM_EXPORT __declspec(dllimport) | ||
#else | ||
#define V8_PLATFORM_EXPORT | ||
#endif // BUILDING_V8_PLATFORM_SHARED | ||
|
||
#else // defined(_WIN32) | ||
|
||
// Setup for Linux shared library export. | ||
#ifdef BUILDING_V8_PLATFORM_SHARED | ||
#define V8_PLATFORM_EXPORT __attribute__((visibility("default"))) | ||
#else | ||
#define V8_PLATFORM_EXPORT | ||
#endif | ||
|
||
#endif // defined(_WIN32) | ||
|
||
#endif // V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ |
Oops, something went wrong.