diff options
author | Abseil Team <absl-team@google.com> | 2023-12-07 13:34:06 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-12-07 13:35:11 -0800 |
commit | fad946221cec37175e762c399760f54b9de9a9fa (patch) | |
tree | 5a2de088e848755ced2f6feac39395fdeaabb318 /absl | |
parent | 0ef87fa0c1d9cff4c231a2a3af854f0b5edfa92b (diff) |
Enable ABSL_HAVE_POSIX_WRITE for Hexagon DSP build.
PiperOrigin-RevId: 588893303
Change-Id: I3f9278f2f7f0bc4b8903a87cb4a740daf7349755
Diffstat (limited to 'absl')
-rw-r--r-- | absl/base/internal/raw_logging.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/absl/base/internal/raw_logging.cc b/absl/base/internal/raw_logging.cc index 69b94265..d32b40a8 100644 --- a/absl/base/internal/raw_logging.cc +++ b/absl/base/internal/raw_logging.cc @@ -42,8 +42,9 @@ // This preprocessor token is also defined in raw_io.cc. If you need to copy // this, consider moving both to config.h instead. #if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || \ - defined(__Fuchsia__) || defined(__native_client__) || \ - defined(__OpenBSD__) || defined(__EMSCRIPTEN__) || defined(__ASYLO__) + defined(__hexagon__) || defined(__Fuchsia__) || \ + defined(__native_client__) || defined(__OpenBSD__) || \ + defined(__EMSCRIPTEN__) || defined(__ASYLO__) #include <unistd.h> |