We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1703594 commit 6a08826Copy full SHA for 6a08826
2 files changed
absl/debugging/internal/elf_mem_image.h
@@ -35,7 +35,7 @@
35
#if defined(__ELF__) && !defined(__OpenBSD__) && !defined(__QNX__) && \
36
!defined(__asmjs__) && !defined(__wasm__) && !defined(__HAIKU__) && \
37
!defined(__sun) && !defined(__VXWORKS__) && !defined(__hexagon__) && \
38
- !defined(__XTENSA__) && !defined(__FREERTOS__)
+ !defined(__XTENSA__) && !defined(__FREERTOS__) && !defined(__ZEPHYR__)
39
#define ABSL_HAVE_ELF_MEM_IMAGE 1
40
#endif
41
absl/time/internal/cctz/src/time_zone_libc.cc
@@ -81,7 +81,7 @@ auto tm_zone(const std::tm& tm) -> decltype(tzname[0]) {
81
const bool is_dst = tm.tm_isdst > 0;
82
return tzname[is_dst];
83
}
84
-#elif defined(__FREERTOS__)
+#elif defined(__FREERTOS__) || defined(__ZEPHYR__)
85
long int tm_gmtoff(const std::tm& tm) {
86
(void)tm;
87
return 0;
0 commit comments