Build · 119f38f3Finished · errors ·
Pause
•••
Download raw log ↓
← Earlier output2.1 MiB captured
ashuffle-3.14.9
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nullable' if the pointer may be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nonnull' if the pointer should never be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nullable' if the pointer may be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nonnull' if the pointer should never be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  744 |     constexpr Rep* self() { return this; }
      |                  ^
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nullable' if the pointer may be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nonnull' if the pointer should never be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nullable' if the pointer may be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nonnull' if the pointer should never be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nullable' if the pointer may be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nonnull' if the pointer should never be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nullable' if the pointer may be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nonnull' if the pointer should never be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nullable' if the pointer may be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nonnull' if the pointer should never be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  773 |     void make_tree(CordRep* tree) {
      |                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nullable' if the pointer may be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nonnull' if the pointer should never be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nullable' if the pointer may be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nonnull' if the pointer should never be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nullable' if the pointer may be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nonnull' if the pointer should never be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nullable' if the pointer may be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nonnull' if the pointer should never be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nullable' if the pointer may be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nonnull' if the pointer should never be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nullable' if the pointer may be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nonnull' if the pointer should never be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nonnull
In file included from ../src/ashuffle.cc:19:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
In file included from ../subprojects/absl/absl/status/statusor.h:51:
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nullable' if the pointer may be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nullable
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nonnull' if the pointer should never be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nonnull
In file included from ../src/ashuffle.cc:19:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
../subprojects/absl/absl/status/statusor.h:523:10: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nullable' if the pointer may be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nullable
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nonnull
../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nullable
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nonnull
25 warnings generated.
asl-142-bld232
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code870c.o -c code870c.c
ashuffle-3.14.9
[144/150] Compiling C++ object libashuffle.a.p/src_shuffle.cc.o
[145/150] Compiling C++ object libashuffle.a.p/src_load.cc.o
In file included from ../src/load.cc:1:
In file included from ../src/load.h:11:
In file included from ../src/mpd.h:11:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:26:
In file included from ../subprojects/absl/absl/container/inlined_vector.h:55:
In file included from ../subprojects/absl/absl/container/internal/inlined_vector.h:35:
../subprojects/absl/absl/types/span.h:222:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nullable' if the pointer may be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nullable
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nonnull' if the pointer should never be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nonnull
In file included from ../src/load.cc:1:
In file included from ../src/load.h:11:
In file included from ../src/mpd.h:11:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:27:
In file included from ../subprojects/absl/absl/strings/cord.h:83:
In file included from ../subprojects/absl/absl/strings/cord_analysis.h:23:
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nullable' if the pointer may be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nonnull' if the pointer should never be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nullable' if the pointer may be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nonnull' if the pointer should never be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  658 |   void make_tree(CordRep* rep) {
      |                         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nullable' if the pointer may be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nonnull' if the pointer should never be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  666 |   void set_tree(CordRep* rep) {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nullable' if the pointer may be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nonnull' if the pointer should never be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nullable' if the pointer may be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nonnull' if the pointer should never be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nullable' if the pointer may be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nonnull' if the pointer should never be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nullable' if the pointer may be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nonnull' if the pointer should never be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nullable' if the pointer may be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nonnull' if the pointer should never be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  744 |     constexpr Rep* self() { return this; }
      |                  ^
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nullable' if the pointer may be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nonnull' if the pointer should never be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nullable' if the pointer may be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nonnull' if the pointer should never be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nullable' if the pointer may be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nonnull' if the pointer should never be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nullable' if the pointer may be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nonnull' if the pointer should never be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nullable' if the pointer may be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nonnull' if the pointer should never be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  773 |     void make_tree(CordRep* tree) {
      |                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nullable' if the pointer may be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nonnull' if the pointer should never be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nullable' if the pointer may be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nonnull' if the pointer should never be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nullable' if the pointer may be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nonnull' if the pointer should never be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nullable' if the pointer may be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nonnull' if the pointer should never be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nullable' if the pointer may be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nonnull' if the pointer should never be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nullable' if the pointer may be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nonnull' if the pointer should never be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nonnull
In file included from ../src/load.cc:1:
In file included from ../src/load.h:11:
In file included from ../src/mpd.h:12:
In file included from ../subprojects/absl/absl/status/statusor.h:51:
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nullable' if the pointer may be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nullable
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nonnull' if the pointer should never be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nonnull
In file included from ../src/load.cc:1:
In file included from ../src/load.h:11:
In file included from ../src/mpd.h:12:
../subprojects/absl/absl/status/statusor.h:523:10: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nullable' if the pointer may be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nullable
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nonnull
../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nullable
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nonnull
25 warnings generated.
asl-142-bld232
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code47c00.o -c code47c00.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code97c241.o -c code97c241.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code9331.o -c code9331.c
ashuffle-3.14.9
[146/150] Compiling C++ object ashuffle.p/src_mpd_client.cc.o
In file included from ../src/mpd_client.cc:1:
In file included from ../src/mpd_client.h:9:
In file included from ../src/mpd.h:11:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:26:
In file included from ../subprojects/absl/absl/container/inlined_vector.h:55:
In file included from ../subprojects/absl/absl/container/internal/inlined_vector.h:35:
../subprojects/absl/absl/types/span.h:222:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nullable' if the pointer may be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nullable
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nonnull' if the pointer should never be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nonnull
In file included from ../src/mpd_client.cc:1:
In file included from ../src/mpd_client.h:9:
In file included from ../src/mpd.h:11:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:27:
In file included from ../subprojects/absl/absl/strings/cord.h:83:
In file included from ../subprojects/absl/absl/strings/cord_analysis.h:23:
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nullable' if the pointer may be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nonnull' if the pointer should never be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nullable' if the pointer may be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nonnull' if the pointer should never be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  658 |   void make_tree(CordRep* rep) {
      |                         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nullable' if the pointer may be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nonnull' if the pointer should never be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  666 |   void set_tree(CordRep* rep) {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nullable' if the pointer may be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nonnull' if the pointer should never be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nullable' if the pointer may be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nonnull' if the pointer should never be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nullable' if the pointer may be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nonnull' if the pointer should never be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nullable' if the pointer may be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nonnull' if the pointer should never be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nullable' if the pointer may be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nonnull' if the pointer should never be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  744 |     constexpr Rep* self() { return this; }
      |                  ^
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nullable' if the pointer may be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nonnull' if the pointer should never be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nullable' if the pointer may be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nonnull' if the pointer should never be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nullable' if the pointer may be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nonnull' if the pointer should never be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nullable' if the pointer may be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nonnull' if the pointer should never be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nullable' if the pointer may be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nonnull' if the pointer should never be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  773 |     void make_tree(CordRep* tree) {
      |                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nullable' if the pointer may be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nonnull' if the pointer should never be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nullable' if the pointer may be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nonnull' if the pointer should never be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nullable' if the pointer may be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nonnull' if the pointer should never be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nullable' if the pointer may be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nonnull' if the pointer should never be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nullable' if the pointer may be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nonnull' if the pointer should never be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nullable' if the pointer may be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nonnull' if the pointer should never be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nonnull
In file included from ../src/mpd_client.cc:1:
In file included from ../src/mpd_client.h:9:
In file included from ../src/mpd.h:12:
In file included from ../subprojects/absl/absl/status/statusor.h:51:
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nullable' if the pointer may be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nullable
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nonnull' if the pointer should never be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nonnull
In file included from ../src/mpd_client.cc:1:
In file included from ../src/mpd_client.h:9:
In file included from ../src/mpd.h:12:
../subprojects/absl/absl/status/statusor.h:523:10: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nullable' if the pointer may be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nullable
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nonnull
../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nullable
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nonnull
In file included from ../src/mpd_client.cc:6:
In file included from ../subprojects/absl/absl/strings/str_join.h:59:
In file included from ../subprojects/absl/absl/strings/internal/str_join_internal.h:50:
../subprojects/absl/absl/strings/str_cat.h:195:66: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
../subprojects/absl/absl/strings/str_cat.h:195:66: note: insert '_Nullable' if the pointer may be null
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
      |                                                                    _Nullable
../subprojects/absl/absl/strings/str_cat.h:195:66: note: insert '_Nonnull' if the pointer should never be null
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
      |                                                                    _Nonnull
../subprojects/absl/absl/strings/str_cat.h:265:65: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
../subprojects/absl/absl/strings/str_cat.h:265:65: note: insert '_Nullable' if the pointer may be null
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
      |                                                                   _Nullable
../subprojects/absl/absl/strings/str_cat.h:265:65: note: insert '_Nonnull' if the pointer should never be null
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
      |                                                                   _Nonnull
27 warnings generated.
[147/150] Compiling C++ object libashuffle.a.p/src_args.cc.o
In file included from ../src/args.cc:12:
In file included from ../subprojects/absl/absl/strings/str_format.h:84:
In file included from ../subprojects/absl/absl/strings/internal/str_format/bind.h:24:
In file included from ../subprojects/absl/absl/container/inlined_vector.h:55:
In file included from ../subprojects/absl/absl/container/internal/inlined_vector.h:35:
../subprojects/absl/absl/types/span.h:222:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nullable' if the pointer may be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nullable
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nonnull' if the pointer should never be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nonnull
In file included from ../src/args.cc:13:
In file included from ../subprojects/absl/absl/strings/str_join.h:59:
In file included from ../subprojects/absl/absl/strings/internal/str_join_internal.h:50:
../subprojects/absl/absl/strings/str_cat.h:195:66: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
../subprojects/absl/absl/strings/str_cat.h:195:66: note: insert '_Nullable' if the pointer may be null
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
      |                                                                    _Nullable
../subprojects/absl/absl/strings/str_cat.h:195:66: note: insert '_Nonnull' if the pointer should never be null
  195 |                               !std::is_pointer<Int>::value>::type* = nullptr)
      |                                                                  ^
      |                                                                    _Nonnull
../subprojects/absl/absl/strings/str_cat.h:265:65: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
../subprojects/absl/absl/strings/str_cat.h:265:65: note: insert '_Nullable' if the pointer may be null
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
      |                                                                   _Nullable
../subprojects/absl/absl/strings/str_cat.h:265:65: note: insert '_Nonnull' if the pointer should never be null
  265 |                typename std::enable_if<(sizeof(Int) <= 8)>::type* = nullptr)
      |                                                                 ^
      |                                                                   _Nonnull
In file included from ../src/args.cc:17:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:11:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:27:
In file included from ../subprojects/absl/absl/strings/cord.h:83:
In file included from ../subprojects/absl/absl/strings/cord_analysis.h:23:
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nullable' if the pointer may be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nonnull' if the pointer should never be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nullable' if the pointer may be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nonnull' if the pointer should never be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  658 |   void make_tree(CordRep* rep) {
      |                         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nullable' if the pointer may be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nonnull' if the pointer should never be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  666 |   void set_tree(CordRep* rep) {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nullable' if the pointer may be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nonnull' if the pointer should never be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nullable' if the pointer may be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nonnull' if the pointer should never be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nullable' if the pointer may be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nonnull' if the pointer should never be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nullable' if the pointer may be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nonnull' if the pointer should never be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nullable' if the pointer may be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nonnull' if the pointer should never be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  744 |     constexpr Rep* self() { return this; }
      |                  ^
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nullable' if the pointer may be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nonnull' if the pointer should never be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nullable' if the pointer may be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nonnull' if the pointer should never be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nullable' if the pointer may be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nonnull' if the pointer should never be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nullable' if the pointer may be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nonnull' if the pointer should never be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nullable' if the pointer may be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nonnull' if the pointer should never be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  773 |     void make_tree(CordRep* tree) {
      |                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nullable' if the pointer may be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nonnull' if the pointer should never be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nullable' if the pointer may be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nonnull' if the pointer should never be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nullable' if the pointer may be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nonnull' if the pointer should never be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nullable' if the pointer may be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nonnull' if the pointer should never be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nullable' if the pointer may be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nonnull' if the pointer should never be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nullable' if the pointer may be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nonnull' if the pointer should never be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nonnull
In file included from ../src/args.cc:17:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
In file included from ../subprojects/absl/absl/status/statusor.h:51:
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nullable' if the pointer may be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nullable
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nonnull' if the pointer should never be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nonnull
In file included from ../src/args.cc:17:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
../subprojects/absl/absl/status/statusor.h:523:10: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nullable' if the pointer may be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nullable
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nonnull
../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nullable
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nonnull
27 warnings generated.
[148/150] Linking static target libashuffle.a
asl-142-bld232
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code16c5x.o -c code16c5x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code16c8x.o -c code16c8x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code17c4x.o -c code17c4x.c
ashuffle-3.14.9
[149/150] Compiling C++ object ashuffle.p/src_main.cc.o
In file included from ../src/main.cc:14:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:26:
In file included from ../subprojects/absl/absl/container/inlined_vector.h:55:
In file included from ../subprojects/absl/absl/container/internal/inlined_vector.h:35:
../subprojects/absl/absl/types/span.h:222:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nullable' if the pointer may be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nullable
../subprojects/absl/absl/types/span.h:222:18: note: insert '_Nonnull' if the pointer should never be null
  222 |   constexpr Span(pointer array ABSL_ATTRIBUTE_LIFETIME_BOUND,
      |                  ^
      |                          _Nonnull
In file included from ../src/main.cc:14:
In file included from ../subprojects/absl/absl/status/status.h:66:
In file included from ../subprojects/absl/absl/status/internal/status_internal.h:27:
In file included from ../subprojects/absl/absl/strings/cord.h:83:
In file included from ../subprojects/absl/absl/strings/cord_analysis.h:23:
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nullable' if the pointer may be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:89:43: note: insert '_Nonnull' if the pointer should never be null
   89 | [[noreturn]] void LogFatalNodeType(CordRep* rep);
      |                                           ^
      |                                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nullable' if the pointer may be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:651:31: note: insert '_Nonnull' if the pointer should never be null
  651 |   void copy_max_inline_to(char* dst) const {
      |                               ^
      |                                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  658 |   void make_tree(CordRep* rep) {
      |                         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nullable' if the pointer may be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:658:25: note: insert '_Nonnull' if the pointer should never be null
  658 |   void make_tree(CordRep* rep) {
      |                         ^
      |                           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  666 |   void set_tree(CordRep* rep) {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nullable' if the pointer may be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:666:24: note: insert '_Nonnull' if the pointer should never be null
  666 |   void set_tree(CordRep* rep) {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nullable' if the pointer may be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:698:61: note: insert '_Nonnull' if the pointer should never be null
  698 |       explicit constexpr AsTree(absl::cord_internal::CordRep* tree)
      |                                                             ^
      |                                                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nullable' if the pointer may be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:701:35: note: insert '_Nonnull' if the pointer should never be null
  701 |       absl::cord_internal::CordRep* rep;
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nullable' if the pointer may be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:709:35: note: insert '_Nonnull' if the pointer should never be null
  709 |     explicit constexpr Rep(CordRep* rep) : as_tree(rep) {}
      |                                   ^
      |                                     _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nullable' if the pointer may be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:743:24: note: insert '_Nonnull' if the pointer should never be null
  743 |     constexpr const Rep* self() const { return this; }
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  744 |     constexpr Rep* self() { return this; }
      |                  ^
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nullable' if the pointer may be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:744:18: note: insert '_Nonnull' if the pointer should never be null
  744 |     constexpr Rep* self() { return this; }
      |                  ^
      |                    _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nullable' if the pointer may be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:752:9: note: insert '_Nonnull' if the pointer should never be null
  752 |     char* as_chars() { return self()->data + 1; }
      |         ^
      |           _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nullable' if the pointer may be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:753:15: note: insert '_Nonnull' if the pointer should never be null
  753 |     const char* as_chars() const { return self()->data + 1; }
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nullable' if the pointer may be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:767:12: note: insert '_Nonnull' if the pointer should never be null
  767 |     CordRep* tree() const { return self()->as_tree.rep; }
      |            ^
      |              _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nullable' if the pointer may be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:768:26: note: insert '_Nonnull' if the pointer should never be null
  768 |     void set_tree(CordRep* rhs) { self()->as_tree.rep = rhs; }
      |                          ^
      |                            _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  773 |     void make_tree(CordRep* tree) {
      |                           ^
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nullable' if the pointer may be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:773:27: note: insert '_Nonnull' if the pointer should never be null
  773 |     void make_tree(CordRep* tree) {
      |                           ^
      |                             _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nullable' if the pointer may be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:888:24: note: insert '_Nonnull' if the pointer should never be null
  888 | inline CordRepSubstring* CordRep::substring() {
      |                        ^
      |                          _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nullable' if the pointer may be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:893:30: note: insert '_Nonnull' if the pointer should never be null
  893 | inline const CordRepSubstring* CordRep::substring() const {
      |                              ^
      |                                _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nullable' if the pointer may be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:898:23: note: insert '_Nonnull' if the pointer should never be null
  898 | inline CordRepExternal* CordRep::external() {
      |                       ^
      |                         _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nullable' if the pointer may be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:903:29: note: insert '_Nonnull' if the pointer should never be null
  903 | inline const CordRepExternal* CordRep::external() const {
      |                             ^
      |                               _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:37: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |                                     ^
      |                                       _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nullable' if the pointer may be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:908:15: note: insert '_Nonnull' if the pointer should never be null
  908 | inline CordRep* CordRep::Ref(CordRep* rep) {
      |               ^
      |                 _Nonnull
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nullable' if the pointer may be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nullable
../subprojects/absl/absl/strings/internal/cord_internal.h:916:35: note: insert '_Nonnull' if the pointer should never be null
  916 | inline void CordRep::Unref(CordRep* rep) {
      |                                   ^
      |                                     _Nonnull
In file included from ../src/main.cc:17:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
In file included from ../subprojects/absl/absl/status/statusor.h:51:
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nullable' if the pointer may be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nullable
../subprojects/absl/absl/status/internal/statusor_internal.h:42:17: note: insert '_Nonnull' if the pointer should never be null
   42 | void test(char (*)[sizeof(std::declval<U>().operator absl::StatusOr<T>())]);
      |                 ^
      |                  _Nonnull
In file included from ../src/main.cc:17:
In file included from ../src/args.h:13:
In file included from ../src/mpd.h:12:
../subprojects/absl/absl/status/statusor.h:523:10: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nullable' if the pointer may be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nullable
../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
  523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |          ^
      |            _Nonnull
../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nullable
../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
  524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
      |    ^
      |      _Nonnull
25 warnings generated.
asl-142-bld232
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codesx20.o -c codesx20.c
ashuffle-3.14.9
[150/150] Linking target ashuffle
FAILED: ashuffle 
clang++  -o ashuffle ashuffle.p/src_mpd_client.cc.o ashuffle.p/src_main.cc.o -Wl,--as-needed -Wl,--no-undefined -Wl,--start-group libashuffle.a subprojects/absl/libabsl_raw_logging_internal.a subprojects/absl/libabsl_int128.a subprojects/absl/libabsl_str_format_internal.a subprojects/absl/libabsl_strings_internal.a subprojects/absl/libabsl_strings.a subprojects/absl/libabsl_hash.a subprojects/absl/libabsl_city.a subprojects/absl/libabsl_low_level_hash.a subprojects/absl/libabsl_time.a subprojects/absl/libabsl_base.a subprojects/absl/libabsl_spinlock_wait.a subprojects/absl/libabsl_cord.a subprojects/absl/libabsl_cord_internal.a subprojects/absl/libabsl_cordz_functions.a subprojects/absl/libabsl_cordz_handle.a subprojects/absl/libabsl_cordz_info.a subprojects/absl/libabsl_crc32c.a subprojects/absl/libabsl_crc_cord_state.a subprojects/absl/libabsl_crc_cpu_detect.a subprojects/absl/libabsl_crc_internal.a subprojects/absl/libabsl_debugging_internal.a subprojects/absl/libabsl_decode_rust_punycode.a subprojects/absl/libabsl_demangle_internal.a subprojects/absl/libabsl_demangle_rust.a subprojects/absl/libabsl_exponential_biased.a subprojects/absl/libabsl_graphcycles_internal.a subprojects/absl/libabsl_kernel_timeout_internal.a subprojects/absl/libabsl_malloc_internal.a subprojects/absl/libabsl_stacktrace.a subprojects/absl/libabsl_status.a subprojects/absl/libabsl_statusor.a subprojects/absl/libabsl_strerror.a subprojects/absl/libabsl_symbolize.a subprojects/absl/libabsl_synchronization.a subprojects/absl/libabsl_throw_delegate.a subprojects/absl/libabsl_time_zone.a subprojects/absl/libabsl_utf8_for_code_point.a subprojects/absl/libabsl_leak_check.a libversion.a -lrt /nix/store/wqnz89asz1s7ivxzp6yqq2axadwhghan-libmpdclient-x86_64-unknown-linux-gnufilc0-2.22/lib/libmpdclient.so /nix/store/sbp0832y59b2nsb5cvbidq95a3yaxbpl-yaml-cpp-x86_64-unknown-linux-gnufilc0-0.8.0/lib/libyaml-cpp.so -Wl,--end-group
subprojects/absl/libabsl_strings.a(subprojects/absl/libabsl_strings.a.p/absl_strings_charconv.cc.o):charconv.cc:function pizlonatedFI1068_nan:(.text+0x2ac38): error: undefined reference to 'pizlonated_nan'
subprojects/absl/libabsl_strings.a(subprojects/absl/libabsl_strings.a.p/absl_strings_charconv.cc.o):charconv.cc:function pizlonatedFI1067_nanf:(.text+0x2bfd8): error: undefined reference to 'pizlonated_nanf'
subprojects/absl/libabsl_exponential_biased.a(subprojects/absl/libabsl_exponential_biased.a.p/absl_profiling_internal_exponential_biased.cc.o):exponential_biased.cc:function pizlonatedFI403_log2:(.text+0x1944): error: undefined reference to 'pizlonated_log2'
subprojects/absl/libabsl_exponential_biased.a(subprojects/absl/libabsl_exponential_biased.a.p/absl_profiling_internal_exponential_biased.cc.o):exponential_biased.cc:function pizlonatedFI403_log:(.text+0x1ac4): error: undefined reference to 'pizlonated_log'
clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
asl-142-bld232
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codepdk.o -c codepdk.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codest6.o -c codest6.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codest7.o -c codest7.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codest9.o -c codest9.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code6804.o -c code6804.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3201x.o -c code3201x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3202x.o -c code3202x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3203x.o -c code3203x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3205x.o -c code3205x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3254x.o -c code3254x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code3206x.o -c code3206x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code9900.o -c code9900.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codetms7.o -c codetms7.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code370.o -c code370.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codemsp.o -c codemsp.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codetms1.o -c codetms1.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code78c10.o -c code78c10.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code75xx.o -c code75xx.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code75k0.o -c code75k0.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code78k0.o -c code78k0.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code78k2.o -c code78k2.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code78k3.o -c code78k3.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code78k4.o -c code78k4.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code7720.o -c code7720.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code77230.o -c code77230.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codev60.o -c codev60.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codescmp.o -c codescmp.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code807x.o -c code807x.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codecop4.o -c codecop4.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codecop8.o -c codecop8.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codesc14xxx.o -c codesc14xxx.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codens32k.o -c codens32k.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codeace.o -c codeace.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codef8.o -c codef8.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code53c8xx.o -c code53c8xx.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codefmc8.o -c codefmc8.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codefmc16.o -c codefmc16.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codemn1610.o -c codemn1610.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codemn2610.o -c codemn2610.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codeol40.o -c codeol40.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codeol50.o -c codeol50.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code1802.o -c code1802.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codevector.o -c codevector.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codexcore.o -c codexcore.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code1750.o -c code1750.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codekenbak.o -c codekenbak.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codecp1600.o -c codecp1600.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/codenano.o -c codenano.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/code6100.o -c code6100.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/nls.o -c nls.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/nlmessages.o -c nlmessages.c
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/chardefs.o -c chardefs.c
cc -o .objdir/asl .objdir/as.o .objdir/asmdef.o .objdir/asmsub.o .objdir/asmerr.o .objdir/lstmacroexp.o .objdir/asmpars.o .objdir/asmmac.o .objdir/asmstructs.o .objdir/asmcode.o .objdir/asmlist.o .objdir/asmlabel.o .objdir/asmdebug.o .objdir/asmif.o .objdir/asmfnums.o .objdir/asmrelocs.o .objdir/tempresult.o .objdir/operator.o .objdir/function.o .objdir/asminclist.o .objdir/symbolsize.o .objdir/asmitree.o .objdir/asmallg.o .objdir/onoff_common.o .objdir/intformat.o .objdir/addrspace.o .objdir/cpu2phys.o .objdir/chartrans.o .objdir/version.o .objdir/endian.o .objdir/bpemu.o .objdir/math64.o .objdir/chunks.o .objdir/console.o .objdir/cpulist.o .objdir/errmsg.o .objdir/trees.o .objdir/nonzstring.o .objdir/dynstr.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/headids.o .objdir/strutil.o .objdir/stdhandl.o .objdir/stringlists.o .objdir/strcomp.o .objdir/codepseudo.o .objdir/intpseudo.o .objdir/motpseudo.o .objdir/tipseudo.o .objdir/natpseudo.o .objdir/fourpseudo.o .objdir/ibmfloat.o .objdir/ieeefloat.o .objdir/decfloat.o .objdir/codevars.o .objdir/code68k.o .objdir/code56k.o .objdir/code601.o .objdir/codepalm.o .objdir/codemcore.o .objdir/codexgate.o .objdir/code68.o .objdir/code6805.o .objdir/code6809.o .objdir/code6812.o .objdir/codes12z.o .objdir/code6816.o .objdir/code68rs08.o .objdir/codeh8_3.o .objdir/codeh8_5.o .objdir/code7000.o .objdir/code65.o .objdir/codeh16.o .objdir/code7700.o .objdir/codehmcs400.o .objdir/code4500.o .objdir/codem16.o .objdir/codem16c.o .objdir/codepdp11.o .objdir/code4004.o .objdir/code8008.o .objdir/code48.o .objdir/code51.o .objdir/code96.o .objdir/code85.o .objdir/code86.o .objdir/code960.o .objdir/code8x30x.o .objdir/code2650.o .objdir/codexa.o .objdir/codeavr.o .objdir/code29k.o .objdir/code166.o .objdir/codez80.o .objdir/codez8.o .objdir/codez8000.o .objdir/codekcpsm.o .objdir/codekcp3.o .objdir/codemic8.o .objdir/code96c141.o .objdir/code90c141.o .objdir/code87c800.o .objdir/code870c.o .objdir/code47c00.o .objdir/code97c241.o .objdir/code9331.o .objdir/code16c5x.o .objdir/code16c8x.o .objdir/code17c4x.o .objdir/codesx20.o .objdir/codepdk.o .objdir/codest6.o .objdir/codest7.o .objdir/codest9.o .objdir/code6804.o .objdir/code3201x.o .objdir/code3202x.o .objdir/code3203x.o .objdir/code3205x.o .objdir/code3254x.o .objdir/code3206x.o .objdir/code9900.o .objdir/codetms7.o .objdir/code370.o .objdir/codemsp.o .objdir/codetms1.o .objdir/code78c10.o .objdir/code75xx.o .objdir/code75k0.o .objdir/code78k0.o .objdir/code78k2.o .objdir/code78k3.o .objdir/code78k4.o .objdir/code7720.o .objdir/code77230.o .objdir/codev60.o .objdir/codescmp.o .objdir/code807x.o .objdir/codecop4.o .objdir/codecop8.o .objdir/codesc14xxx.o .objdir/codens32k.o .objdir/codeace.o .objdir/codef8.o .objdir/code53c8xx.o .objdir/codefmc8.o .objdir/codefmc16.o .objdir/codemn1610.o .objdir/codemn2610.o .objdir/codeol40.o .objdir/codeol50.o .objdir/code1802.o .objdir/codevector.o .objdir/codexcore.o .objdir/code1750.o .objdir/codekenbak.o .objdir/codecp1600.o .objdir/codenano.o .objdir/code6100.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp plist.res -h plist.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/plist.o -c plist.c
./.objdir/rescomp tools.res -h tools.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/toolutils.o -c toolutils.c
cc -o .objdir/plist .objdir/plist.o .objdir/version.o .objdir/toolutils.o .objdir/addrspace.o .objdir/headids.o .objdir/endian.o .objdir/bpemu.o .objdir/stringlists.o .objdir/strutil.o .objdir/dynstr.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp alink.res -h alink.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/alink.o -c alink.c
cc -o .objdir/alink .objdir/alink.o .objdir/version.o .objdir/toolutils.o .objdir/addrspace.o .objdir/endian.o .objdir/bpemu.o .objdir/stringlists.o .objdir/strutil.o .objdir/dynstr.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp pbind.res -h pbind.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/pbind.o -c pbind.c
cc -o .objdir/pbind .objdir/pbind.o .objdir/version.o .objdir/toolutils.o .objdir/addrspace.o .objdir/endian.o .objdir/bpemu.o .objdir/stringlists.o .objdir/strutil.o .objdir/dynstr.o .objdir/stdhandl.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp p2hex.res -h p2hex.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/p2hex.o -c p2hex.c
cc -o .objdir/p2hex .objdir/p2hex.o .objdir/version.o .objdir/toolutils.o .objdir/addrspace.o .objdir/headids.o .objdir/endian.o .objdir/bpemu.o .objdir/stringlists.o .objdir/strutil.o .objdir/dynstr.o .objdir/chunks.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp p2bin.res -h p2bin.rsc
cc -g -fomit-frame-pointer -Wall -DINCDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl\" -DLIBDIR=\"/nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl\" -o .objdir/p2bin.o -c p2bin.c
cc -o .objdir/p2bin .objdir/p2bin.o .objdir/version.o .objdir/toolutils.o .objdir/addrspace.o .objdir/endian.o .objdir/bpemu.o .objdir/stringlists.o .objdir/strutil.o .objdir/dynstr.o .objdir/chunks.o .objdir/cmdarg.o .objdir/ioerrs.o .objdir/nls.o .objdir/nlmessages.o .objdir/chardefs.o -lm 
./.objdir/rescomp ioerrs.res -m .objdir/ioerrs.msg
./.objdir/rescomp cmdarg.res -m .objdir/cmdarg.msg
./.objdir/rescomp tools.res -m .objdir/tools.msg
./.objdir/rescomp as.res -m .objdir/as.msg
./.objdir/rescomp plist.res -m .objdir/plist.msg
./.objdir/rescomp alink.res -m .objdir/alink.msg
./.objdir/rescomp pbind.res -m .objdir/pbind.msg
./.objdir/rescomp p2hex.res -m .objdir/p2hex.msg
./.objdir/rescomp p2bin.res -m .objdir/p2bin.msg
buildPhase completed in 52 seconds
→ installPhase
install flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash install
INSTROOT= OBJDIR=.objdir/ TARG_OBJDIR=.objdir/ TARG_EXEXTENSION= ./install.sh /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/include/asl /nix/store/xkjiwhscz795g571wzrspc8mlvyjv3xg-asl-x86_64-unknown-linux-gnufilc0-142-bld232-man/share/man /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib/asl /nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc/share/doc/asl
Installing files:
chmod: cannot access '/nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc/share/doc/asl/as_DE.*': No such file or directory
chmod: cannot access '/nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc/share/doc/asl/as_EN.*': No such file or directory
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/asl
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/plist
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/alink
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/pbind
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/p2hex
shrinking /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin/p2bin
checking for references to /build/ in /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232...
patching script interpreter paths in /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232
stripping (with command strip and flags -S -p) in  /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/lib /nix/store/rcil50888agqjaxi0nyzvnwwjrmm9zx0-asl-x86_64-unknown-linux-gnufilc0-142-bld232/bin
shrinking RPATHs of ELF executables and libraries in /nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc
checking for references to /build/ in /nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc...
patching script interpreter paths in /nix/store/7y7wqvjs5lzhkyh0amnsqh0hbaraxr71-asl-x86_64-unknown-linux-gnufilc0-142-bld232-doc
shrinking RPATHs of ELF executables and libraries in /nix/store/xkjiwhscz795g571wzrspc8mlvyjv3xg-asl-x86_64-unknown-linux-gnufilc0-142-bld232-man
checking for references to /build/ in /nix/store/xkjiwhscz795g571wzrspc8mlvyjv3xg-asl-x86_64-unknown-linux-gnufilc0-142-bld232-man...
gzipping man pages under /nix/store/xkjiwhscz795g571wzrspc8mlvyjv3xg-asl-x86_64-unknown-linux-gnufilc0-142-bld232-man/share/man/
patching script interpreter paths in /nix/store/xkjiwhscz795g571wzrspc8mlvyjv3xg-asl-x86_64-unknown-linux-gnufilc0-142-bld232-man
asdf-2.26
error: Cannot build '/nix/store/3j8q6ljbfvba42xld8gpg2b050skv6hq-asdf-x86_64-unknown-linux-gnufilc0-2.26.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26
       Last 19 log lines:
       > Running phase: unpackPhase
       > unpacking source archive /nix/store/ipbvzacjd97wxkpgy1hfb5vji46ws7x8-asdf-2.26.tar.gz
       > source root is asdf
       > setting SOURCE_DATE_EPOCH to timestamp 1351553057 of file "asdf/wild-modules.lisp"
       > Running phase: patchPhase
       > Running phase: updateAutotoolsGnuConfigScriptsPhase
       > Running phase: updateAutotoolsGnuConfigScriptsPhase
       > Running phase: configurePhase
       > no configure script, doing nothing
       > Running phase: buildPhase
       > make: Nothing to be done for 'asdf.lisp'.
       > Running phase: installPhase
       > Running phase: fixupPhase
       > shrinking RPATHs of ELF executables and libraries in /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26
       > checking for references to /build/ in /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26...
       > patching script interpreter paths in /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26
       > stripping (with command strip and flags -S -p) in  /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26/lib
       > ERROR: noBrokenSymlinks: the symlink /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26/lib/common-lisp/uiop points to a missing target: /nix/store/hmcvgx19hdcwzb1gj8xlsnh4508jbmps-asdf-x86_64-unknown-linux-gnufilc0-2.26/lib/common-lisp/asdf/uiop
       > ERROR: noBrokenSymlinks: found 1 dangling symlinks, 0 reflexive symlinks and 0 unreadable symlinks
       For full logs, run:
         nix log /nix/store/3j8q6ljbfvba42xld8gpg2b050skv6hq-asdf-x86_64-unknown-linux-gnufilc0-2.26.drv
ashuffle-3.14.9
error: Cannot build '/nix/store/an8i49mvif1nd5g4y9kmk2af5p3j00q8-ashuffle-x86_64-unknown-linux-gnufilc0-3.14.9.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/46m69qrc2xjymlqh00rhffngkf8cqx15-ashuffle-x86_64-unknown-linux-gnufilc0-3.14.9
       Last 25 log lines:
       > ../subprojects/absl/absl/status/statusor.h:523:10: note: insert '_Nonnull' if the pointer should never be null
       >   523 |   const T* operator->() const ABSL_ATTRIBUTE_LIFETIME_BOUND;
       >       |          ^
       >       |            _Nonnull
       > ../subprojects/absl/absl/status/statusor.h:524:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) [-Wnullability-completeness]
       >   524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
       >       |    ^
       > ../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nullable' if the pointer may be null
       >   524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
       >       |    ^
       >       |      _Nullable
       > ../subprojects/absl/absl/status/statusor.h:524:4: note: insert '_Nonnull' if the pointer should never be null
       >   524 |   T* operator->() ABSL_ATTRIBUTE_LIFETIME_BOUND;
       >       |    ^
       >       |      _Nonnull
       > 25 warnings generated.
       > [150/150] Linking target ashuffle
       > FAILED: ashuffle
       > clang++  -o ashuffle ashuffle.p/src_mpd_client.cc.o ashuffle.p/src_main.cc.o -Wl,--as-needed -Wl,--no-undefined -Wl,--start-group libashuffle.a subprojects/absl/libabsl_raw_logging_internal.a subprojects/absl/libabsl_int128.a subprojects/absl/libabsl_str_format_internal.a subprojects/absl/libabsl_strings_internal.a subprojects/absl/libabsl_strings.a subprojects/absl/libabsl_hash.a subprojects/absl/libabsl_city.a subprojects/absl/libabsl_low_level_hash.a subprojects/absl/libabsl_time.a subprojects/absl/libabsl_base.a subprojects/absl/libabsl_spinlock_wait.a subprojects/absl/libabsl_cord.a subprojects/absl/libabsl_cord_internal.a subprojects/absl/libabsl_cordz_functions.a subprojects/absl/libabsl_cordz_handle.a subprojects/absl/libabsl_cordz_info.a subprojects/absl/libabsl_crc32c.a subprojects/absl/libabsl_crc_cord_state.a subprojects/absl/libabsl_crc_cpu_detect.a subprojects/absl/libabsl_crc_internal.a subprojects/absl/libabsl_debugging_internal.a subprojects/absl/libabsl_decode_rust_punycode.a subprojects/absl/libabsl_demangle_internal.a subprojects/absl/libabsl_demangle_rust.a subprojects/absl/libabsl_exponential_biased.a subprojects/absl/libabsl_graphcycles_internal.a subprojects/absl/libabsl_kernel_timeout_internal.a subprojects/absl/libabsl_malloc_internal.a subprojects/absl/libabsl_stacktrace.a subprojects/absl/libabsl_status.a subprojects/absl/libabsl_statusor.a subprojects/absl/libabsl_strerror.a subprojects/absl/libabsl_symbolize.a subprojects/absl/libabsl_synchronization.a subprojects/absl/libabsl_throw_delegate.a subprojects/absl/libabsl_time_zone.a subprojects/absl/libabsl_utf8_for_code_point.a subprojects/absl/libabsl_leak_check.a libversion.a -lrt /nix/store/wqnz89asz1s7ivxzp6yqq2axadwhghan-libmpdclient-x86_64-unknown-linux-gnufilc0-2.22/lib/libmpdclient.so /nix/store/sbp0832y59b2nsb5cvbidq95a3yaxbpl-yaml-cpp-x86_64-unknown-linux-gnufilc0-0.8.0/lib/libyaml-cpp.so -Wl,--end-group
       > subprojects/absl/libabsl_strings.a(subprojects/absl/libabsl_strings.a.p/absl_strings_charconv.cc.o):charconv.cc:function pizlonatedFI1068_nan:(.text+0x2ac38): error: undefined reference to 'pizlonated_nan'
       > subprojects/absl/libabsl_strings.a(subprojects/absl/libabsl_strings.a.p/absl_strings_charconv.cc.o):charconv.cc:function pizlonatedFI1067_nanf:(.text+0x2bfd8): error: undefined reference to 'pizlonated_nanf'
       > subprojects/absl/libabsl_exponential_biased.a(subprojects/absl/libabsl_exponential_biased.a.p/absl_profiling_internal_exponential_biased.cc.o):exponential_biased.cc:function pizlonatedFI403_log2:(.text+0x1944): error: undefined reference to 'pizlonated_log2'
       > subprojects/absl/libabsl_exponential_biased.a(subprojects/absl/libabsl_exponential_biased.a.p/absl_profiling_internal_exponential_biased.cc.o):exponential_biased.cc:function pizlonatedFI403_log:(.text+0x1ac4): error: undefined reference to 'pizlonated_log'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > ninja: build stopped: subcommand failed.
       For full logs, run:
         nix log /nix/store/an8i49mvif1nd5g4y9kmk2af5p3j00q8-ashuffle-x86_64-unknown-linux-gnufilc0-3.14.9.drv
asdf-2.26
error: build of '/nix/store/3j8q6ljbfvba42xld8gpg2b050skv6hq-asdf-x86_64-unknown-linux-gnufilc0-2.26.drv^*', '/nix/store/an8i49mvif1nd5g4y9kmk2af5p3j00q8-ashuffle-x86_64-unknown-linux-gnufilc0-3.14.9.drv^*' failed

End of log