This post https://discourse.llvm.org/t/can-i-build-llvm-using-basel-for-macos-arm64/67043 details the need of this change. When I was building LLVM using Bazel for macOS+M series chips, I got the following error: ``` FPUtil/FEnvImpl.h:16:10: fatal error: 'aarch64/fenv_darwin_impl.h' file not found ``` @tschuett kindly noticed that the header file `fenv_darwin_impl.h` is in the repo https://github.com/llvm/llvm-project/blob/main/libc/src/__support/FPUtil/aarch64/fenv_darwin_impl.h. It is just not mentioned in the Bazel build rule https://github.com/llvm/llvm-project/blob/3abdd9b91bc17541e78de6251043e178efe0e3ee/utils/bazel/llvm-project-overlay/libc/BUILD.bazel#L273