[lttng-dev] lttng-tools compilation error v2.5.0 rc1
Martin Townsend
martin.townsend at xsilon.com
Fri Jun 27 08:27:19 EDT 2014
Hi,
I updated to version 2.5.0 rc1 today and found that I couldn't build
lttng-tools for my Microblaze based system.
| error.c: In function 'log_add_time':
| error.c:52:17: error: 'error_log_time' undeclared (first use in this
function)
| ret = snprintf(error_log_time.str, sizeof(error_log_time.str),
| ^
| error.c:52:17: note: each undeclared identifier is reported only once
for each function it appears in
| make[3]: *** [error.lo] Error 1
| make[3]: *** Waiting for unfinished jobs....
After grepping URCU_TLS in the source I could see it was used elsewhere
with accessor macros so I used the following patch which fixes the
compiler error.
I'm not familiar with the code so I was wondering if this is the correct
fix?
Best Regards,
Martin
From 8a2789962fb22e92f8e9b46747c4d56cdaae04ca Mon Sep 17 00:00:00 2001
From: Martin Townsend <martin.townsend at xsilon.com>
Date: Fri, 27 Jun 2014 11:41:03 +0100
Subject: [PATCH] fixed compile error mising URCU_TLS
---
src/common/error.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/common/error.c b/src/common/error.c
index 418fc47..92852f9 100644
--- a/src/common/error.c
+++ b/src/common/error.c
@@ -49,14 +49,14 @@ const char *log_add_time(void)
}
/* Format time in the TLS variable. */
- ret = snprintf(error_log_time.str, sizeof(error_log_time.str),
+ ret = snprintf(URCU_TLS(error_log_time).str,
sizeof(URCU_TLS(error_log_time).str),
"%02d:%02d:%02d.%06ld",
tm.tm_hour, tm.tm_min, tm.tm_sec, tp.tv_nsec);
if (ret < 0) {
goto error;
}
- return error_log_time.str;
+ return URCU_TLS(error_log_time).str;
error:
/* Return an empty string on error so logging is not affected. */
--
1.9.1
More information about the lttng-dev
mailing list