OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 11 matching lines...) Expand all Loading... |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #include "version.h" | 30 #include "version.h" |
31 | 31 |
32 // These macros define the version number for the current version. | |
33 // NOTE these macros are used by some of the tool scripts and the build | |
34 // system so their names cannot be changed without changing the scripts. | |
35 #define MAJOR_VERSION 3 | |
36 #define MINOR_VERSION 21 | |
37 #define BUILD_NUMBER 8 | |
38 #define PATCH_LEVEL 0 | |
39 // Use 1 for candidates and 0 otherwise. | |
40 // (Boolean macro values are not supported by all preprocessors.) | |
41 #define IS_CANDIDATE_VERSION 1 | |
42 | |
43 // Define SONAME to have the build system put a specific SONAME into the | 32 // Define SONAME to have the build system put a specific SONAME into the |
44 // shared library instead the generic SONAME generated from the V8 version | 33 // shared library instead the generic SONAME generated from the V8 version |
45 // number. This define is mainly used by the build system script. | 34 // number. This define is mainly used by the build system script. |
46 #define SONAME "" | 35 #define SONAME "" |
47 | 36 |
48 #if IS_CANDIDATE_VERSION | |
49 #define CANDIDATE_STRING " (candidate)" | |
50 #else | |
51 #define CANDIDATE_STRING "" | |
52 #endif | |
53 | |
54 #define SX(x) #x | |
55 #define S(x) SX(x) | |
56 | |
57 #if PATCH_LEVEL > 0 | |
58 #define VERSION_STRING \ | |
59 S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) "." \ | |
60 S(PATCH_LEVEL) CANDIDATE_STRING | |
61 #else | |
62 #define VERSION_STRING \ | |
63 S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) \ | |
64 CANDIDATE_STRING | |
65 #endif | |
66 | |
67 namespace v8 { | 37 namespace v8 { |
68 namespace internal { | 38 namespace internal { |
69 | 39 |
70 int Version::major_ = MAJOR_VERSION; | 40 int Version::major_ = V8_MAJOR_VERSION; |
71 int Version::minor_ = MINOR_VERSION; | 41 int Version::minor_ = V8_MINOR_VERSION; |
72 int Version::build_ = BUILD_NUMBER; | 42 int Version::build_ = V8_BUILD_NUMBER; |
73 int Version::patch_ = PATCH_LEVEL; | 43 int Version::patch_ = V8_PATCH_LEVEL; |
74 bool Version::candidate_ = (IS_CANDIDATE_VERSION != 0); | 44 bool Version::candidate_ = (V8_CANDIDATE_VERSION != 0); |
75 const char* Version::soname_ = SONAME; | 45 const char* Version::soname_ = SONAME; |
76 const char* Version::version_string_ = VERSION_STRING; | 46 const char* Version::version_string_ = V8_VERSION_STRING; |
77 | 47 |
78 // Calculate the V8 version string. | 48 // Calculate the V8 version string. |
79 void Version::GetString(Vector<char> str) { | 49 void Version::GetString(Vector<char> str) { |
80 const char* candidate = IsCandidate() ? " (candidate)" : ""; | 50 const char* candidate = IsCandidate() ? " (candidate)" : ""; |
81 #ifdef USE_SIMULATOR | 51 #ifdef USE_SIMULATOR |
82 const char* is_simulator = " SIMULATOR"; | 52 const char* is_simulator = " SIMULATOR"; |
83 #else | 53 #else |
84 const char* is_simulator = ""; | 54 const char* is_simulator = ""; |
85 #endif // USE_SIMULATOR | 55 #endif // USE_SIMULATOR |
86 if (GetPatch() > 0) { | 56 if (GetPatch() > 0) { |
(...skipping 20 matching lines...) Expand all Loading... |
107 OS::SNPrintF(str, "libv8-%d.%d.%d%s.so", | 77 OS::SNPrintF(str, "libv8-%d.%d.%d%s.so", |
108 GetMajor(), GetMinor(), GetBuild(), candidate); | 78 GetMajor(), GetMinor(), GetBuild(), candidate); |
109 } | 79 } |
110 } else { | 80 } else { |
111 // Use specific SONAME. | 81 // Use specific SONAME. |
112 OS::SNPrintF(str, "%s", soname_); | 82 OS::SNPrintF(str, "%s", soname_); |
113 } | 83 } |
114 } | 84 } |
115 | 85 |
116 } } // namespace v8::internal | 86 } } // namespace v8::internal |
OLD | NEW |