OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/version.h" | 5 #include "src/version.h" |
6 | 6 |
7 #include "include/v8-version.h" | 7 #include "include/v8-version.h" |
8 #include "src/utils.h" | 8 #include "src/utils.h" |
9 | 9 |
10 // Define SONAME to have the build system put a specific SONAME into the | 10 // Define SONAME to have the build system put a specific SONAME into the |
11 // shared library instead the generic SONAME generated from the V8 version | 11 // shared library instead the generic SONAME generated from the V8 version |
12 // number. This define is mainly used by the build system script. | 12 // number. This define is mainly used by the build system script. |
13 #define SONAME "" | 13 #define SONAME "" |
14 | 14 |
| 15 #if V8_IS_CANDIDATE_VERSION |
| 16 #define CANDIDATE_STRING " (candidate)" |
| 17 #else |
| 18 #define CANDIDATE_STRING "" |
| 19 #endif |
| 20 |
| 21 #define SX(x) #x |
| 22 #define S(x) SX(x) |
| 23 |
| 24 #if V8_PATCH_LEVEL > 0 |
| 25 #define VERSION_STRING \ |
| 26 S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) "." S( \ |
| 27 V8_PATCH_LEVEL) CANDIDATE_STRING |
| 28 #else |
| 29 #define VERSION_STRING \ |
| 30 S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) \ |
| 31 CANDIDATE_STRING |
| 32 #endif |
| 33 |
15 namespace v8 { | 34 namespace v8 { |
16 namespace internal { | 35 namespace internal { |
17 | 36 |
18 int Version::major_ = V8_MAJOR_VERSION; | 37 int Version::major_ = V8_MAJOR_VERSION; |
19 int Version::minor_ = V8_MINOR_VERSION; | 38 int Version::minor_ = V8_MINOR_VERSION; |
20 int Version::build_ = V8_BUILD_NUMBER; | 39 int Version::build_ = V8_BUILD_NUMBER; |
21 int Version::patch_ = V8_PATCH_LEVEL; | 40 int Version::patch_ = V8_PATCH_LEVEL; |
22 bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0); | 41 bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0); |
23 const char* Version::soname_ = SONAME; | 42 const char* Version::soname_ = SONAME; |
24 const char* Version::version_string_ = V8_VERSION_STRING; | 43 const char* Version::version_string_ = VERSION_STRING; |
25 | 44 |
26 // Calculate the V8 version string. | 45 // Calculate the V8 version string. |
27 void Version::GetString(Vector<char> str) { | 46 void Version::GetString(Vector<char> str) { |
28 const char* candidate = IsCandidate() ? " (candidate)" : ""; | 47 const char* candidate = IsCandidate() ? " (candidate)" : ""; |
29 #ifdef USE_SIMULATOR | 48 #ifdef USE_SIMULATOR |
30 const char* is_simulator = " SIMULATOR"; | 49 const char* is_simulator = " SIMULATOR"; |
31 #else | 50 #else |
32 const char* is_simulator = ""; | 51 const char* is_simulator = ""; |
33 #endif // USE_SIMULATOR | 52 #endif // USE_SIMULATOR |
34 if (GetPatch() > 0) { | 53 if (GetPatch() > 0) { |
(...skipping 21 matching lines...) Expand all Loading... |
56 GetMajor(), GetMinor(), GetBuild(), candidate); | 75 GetMajor(), GetMinor(), GetBuild(), candidate); |
57 } | 76 } |
58 } else { | 77 } else { |
59 // Use specific SONAME. | 78 // Use specific SONAME. |
60 SNPrintF(str, "%s", soname_); | 79 SNPrintF(str, "%s", soname_); |
61 } | 80 } |
62 } | 81 } |
63 | 82 |
64 } // namespace internal | 83 } // namespace internal |
65 } // namespace v8 | 84 } // namespace v8 |
OLD | NEW |