libv8 3.16.14.8.rc1-armv7l-linux
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.
- checksums.yaml +7 -0
- data/ext/libv8/.location.yml +1 -0
- data/ext/libv8/arch.rb +43 -0
- data/ext/libv8/location.rb +81 -0
- data/ext/libv8/paths.rb +38 -0
- data/lib/libv8.rb +9 -0
- data/lib/libv8/version.rb +3 -0
- data/vendor/v8/include/v8-debug.h +408 -0
- data/vendor/v8/include/v8-preparser.h +118 -0
- data/vendor/v8/include/v8-profiler.h +580 -0
- data/vendor/v8/include/v8-testing.h +105 -0
- data/vendor/v8/include/v8.h +4937 -0
- data/vendor/v8/include/v8stdint.h +54 -0
- data/vendor/v8/out/arm.release/obj.target/tools/gyp/libpreparser_lib.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_base.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_snapshot.a +0 -0
- metadata +118 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
// Copyright 2012 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
// Load definitions of standard types.
|
29
|
+
|
30
|
+
#ifndef V8STDINT_H_
|
31
|
+
#define V8STDINT_H_
|
32
|
+
|
33
|
+
#include <stddef.h>
|
34
|
+
#include <stdio.h>
|
35
|
+
|
36
|
+
#if defined(_WIN32) && !defined(__MINGW32__)
|
37
|
+
|
38
|
+
typedef signed char int8_t;
|
39
|
+
typedef unsigned char uint8_t;
|
40
|
+
typedef short int16_t; // NOLINT
|
41
|
+
typedef unsigned short uint16_t; // NOLINT
|
42
|
+
typedef int int32_t;
|
43
|
+
typedef unsigned int uint32_t;
|
44
|
+
typedef __int64 int64_t;
|
45
|
+
typedef unsigned __int64 uint64_t;
|
46
|
+
// intptr_t and friends are defined in crtdefs.h through stdio.h.
|
47
|
+
|
48
|
+
#else
|
49
|
+
|
50
|
+
#include <stdint.h>
|
51
|
+
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#endif // V8STDINT_H_
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: libv8
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.16.14.8.rc1
|
5
|
+
platform: armv7l-linux
|
6
|
+
authors:
|
7
|
+
- Charles Lowell
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake-compiler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-spies
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Distributes the V8 JavaScript engine in binary and source forms in order
|
70
|
+
to support fast builds of The Ruby Racer
|
71
|
+
email:
|
72
|
+
- cowboyd@thefrontside.net
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ext/libv8/.location.yml
|
78
|
+
- ext/libv8/arch.rb
|
79
|
+
- ext/libv8/location.rb
|
80
|
+
- ext/libv8/paths.rb
|
81
|
+
- lib/libv8.rb
|
82
|
+
- lib/libv8/version.rb
|
83
|
+
- vendor/v8/include/v8-debug.h
|
84
|
+
- vendor/v8/include/v8-preparser.h
|
85
|
+
- vendor/v8/include/v8-profiler.h
|
86
|
+
- vendor/v8/include/v8-testing.h
|
87
|
+
- vendor/v8/include/v8.h
|
88
|
+
- vendor/v8/include/v8stdint.h
|
89
|
+
- vendor/v8/out/arm.release/obj.target/tools/gyp/libpreparser_lib.a
|
90
|
+
- vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_base.a
|
91
|
+
- vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_nosnapshot.a
|
92
|
+
- vendor/v8/out/arm.release/obj.target/tools/gyp/libv8_snapshot.a
|
93
|
+
homepage: http://github.com/cowboyd/libv8
|
94
|
+
licenses:
|
95
|
+
- MIT
|
96
|
+
metadata: {}
|
97
|
+
post_install_message:
|
98
|
+
rdoc_options: []
|
99
|
+
require_paths:
|
100
|
+
- lib
|
101
|
+
- ext
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - '>='
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - '>'
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 1.3.1
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project: libv8
|
114
|
+
rubygems_version: 2.2.2
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: Distribution of the V8 JavaScript engine
|
118
|
+
test_files: []
|