aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Maennich <maennich@google.com>2023-02-17 10:28:55 +0000
committerMatthias Maennich <maennich@google.com>2023-02-17 13:47:09 +0000
commit962126d1dade6b7968b588aab60c9193eeaa68ef (patch)
tree7d83ca3757779f58080908899c29830df113a6a9
parentda911c5b14e87793391420b5d5784586ed078a51 (diff)
downloaddwarves-build-tools-2022.tar.gz
Android.bp: correct the reported versionbuild-tools-2022
During the latest update e017fe3016a1 ("Merge branch 'upstream-master' into 'master'"), the version define was not updated, hence tools built like `pahole` incorrectly report the stale version 1.19 while they should announce their own version as 1.23. Thus fix the define. Bug: 269622287 Fixes: e017fe3016a1 ("Merge branch 'upstream-master' into 'master'") Change-Id: I6d5c1e5ae1dd8fdeb6746d43bd5fa2dc8057a671 Signed-off-by: Matthias Maennich <maennich@google.com>
-rw-r--r--Android.bp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index efe5ed3..425737c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,7 +16,7 @@ cc_defaults {
name: "dwarves_defaults",
cflags: [
"-DDWARVES_MAJOR_VERSION=1",
- "-DDWARVES_MINOR_VERSION=19",
+ "-DDWARVES_MINOR_VERSION=23",
"-D_GNU_SOURCE",
"-Wno-deprecated-declarations",
"-Wno-pointer-arith",
@@ -27,7 +27,6 @@ cc_defaults {
compile_multilib: "64",
}
-
cc_library_host_static {
name: "libdwarves",
defaults: ["dwarves_defaults"],
@@ -53,7 +52,6 @@ cc_library_host_static {
],
}
-
cc_binary_host {
name: "pahole",
defaults: ["dwarves_defaults"],