Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/version.cc

Issue 2621033002: Revert of [build] Introduce an embedder version string (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/version.h ('k') | test/cctest/test-version.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 15 #if V8_IS_CANDIDATE_VERSION
16 #define CANDIDATE_STRING " (candidate)" 16 #define CANDIDATE_STRING " (candidate)"
17 #else 17 #else
18 #define CANDIDATE_STRING "" 18 #define CANDIDATE_STRING ""
19 #endif 19 #endif
20 20
21 #define SX(x) #x 21 #define SX(x) #x
22 #define S(x) SX(x) 22 #define S(x) SX(x)
23 23
24 #if V8_PATCH_LEVEL > 0 24 #if V8_PATCH_LEVEL > 0
25 #define VERSION_STRING \ 25 #define VERSION_STRING \
26 S(V8_MAJOR_VERSION) \ 26 S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) "." S( \
27 "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) "." S(V8_PATCH_LEVEL) \ 27 V8_PATCH_LEVEL) CANDIDATE_STRING
28 V8_EMBEDDER_STRING CANDIDATE_STRING
29 #else 28 #else
30 #define VERSION_STRING \ 29 #define VERSION_STRING \
31 S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) \ 30 S(V8_MAJOR_VERSION) "." S(V8_MINOR_VERSION) "." S(V8_BUILD_NUMBER) \
32 CANDIDATE_STRING 31 CANDIDATE_STRING
33 #endif 32 #endif
34 33
35 namespace v8 { 34 namespace v8 {
36 namespace internal { 35 namespace internal {
37 36
38 int Version::major_ = V8_MAJOR_VERSION; 37 int Version::major_ = V8_MAJOR_VERSION;
39 int Version::minor_ = V8_MINOR_VERSION; 38 int Version::minor_ = V8_MINOR_VERSION;
40 int Version::build_ = V8_BUILD_NUMBER; 39 int Version::build_ = V8_BUILD_NUMBER;
41 int Version::patch_ = V8_PATCH_LEVEL; 40 int Version::patch_ = V8_PATCH_LEVEL;
42 const char* Version::embedder_ = V8_EMBEDDER_STRING;
43 bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0); 41 bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0);
44 const char* Version::soname_ = SONAME; 42 const char* Version::soname_ = SONAME;
45 const char* Version::version_string_ = VERSION_STRING; 43 const char* Version::version_string_ = VERSION_STRING;
46 44
47 // Calculate the V8 version string. 45 // Calculate the V8 version string.
48 void Version::GetString(Vector<char> str) { 46 void Version::GetString(Vector<char> str) {
49 const char* candidate = IsCandidate() ? " (candidate)" : ""; 47 const char* candidate = IsCandidate() ? " (candidate)" : "";
50 #ifdef USE_SIMULATOR 48 #ifdef USE_SIMULATOR
51 const char* is_simulator = " SIMULATOR"; 49 const char* is_simulator = " SIMULATOR";
52 #else 50 #else
53 const char* is_simulator = ""; 51 const char* is_simulator = "";
54 #endif // USE_SIMULATOR 52 #endif // USE_SIMULATOR
55 if (GetPatch() > 0) { 53 if (GetPatch() > 0) {
56 SNPrintF(str, "%d.%d.%d.%d%s%s%s", GetMajor(), GetMinor(), GetBuild(), 54 SNPrintF(str, "%d.%d.%d.%d%s%s",
57 GetPatch(), GetEmbedder(), candidate, is_simulator); 55 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
56 is_simulator);
58 } else { 57 } else {
59 SNPrintF(str, "%d.%d.%d%s%s", 58 SNPrintF(str, "%d.%d.%d%s%s",
60 GetMajor(), GetMinor(), GetBuild(), candidate, 59 GetMajor(), GetMinor(), GetBuild(), candidate,
61 is_simulator); 60 is_simulator);
62 } 61 }
63 } 62 }
64 63
65 64
66 // Calculate the SONAME for the V8 shared library. 65 // Calculate the SONAME for the V8 shared library.
67 void Version::GetSONAME(Vector<char> str) { 66 void Version::GetSONAME(Vector<char> str) {
68 if (soname_ == NULL || *soname_ == '\0') { 67 if (soname_ == NULL || *soname_ == '\0') {
69 // Generate generic SONAME if no specific SONAME is defined. 68 // Generate generic SONAME if no specific SONAME is defined.
70 const char* candidate = IsCandidate() ? "-candidate" : ""; 69 const char* candidate = IsCandidate() ? "-candidate" : "";
71 if (GetPatch() > 0) { 70 if (GetPatch() > 0) {
72 SNPrintF(str, "libv8-%d.%d.%d.%d%s%s.so", GetMajor(), GetMinor(), 71 SNPrintF(str, "libv8-%d.%d.%d.%d%s.so",
73 GetBuild(), GetPatch(), GetEmbedder(), candidate); 72 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
74 } else { 73 } else {
75 SNPrintF(str, "libv8-%d.%d.%d%s.so", 74 SNPrintF(str, "libv8-%d.%d.%d%s.so",
76 GetMajor(), GetMinor(), GetBuild(), candidate); 75 GetMajor(), GetMinor(), GetBuild(), candidate);
77 } 76 }
78 } else { 77 } else {
79 // Use specific SONAME. 78 // Use specific SONAME.
80 SNPrintF(str, "%s", soname_); 79 SNPrintF(str, "%s", soname_);
81 } 80 }
82 } 81 }
83 82
84 } // namespace internal 83 } // namespace internal
85 } // namespace v8 84 } // namespace v8
OLDNEW
« no previous file with comments | « src/version.h ('k') | test/cctest/test-version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698