diff --git a/pills/08-generic-builders.xml b/pills/08-generic-builders.xml index 4ab190b..ee8d9d6 100644 --- a/pills/08-generic-builders.xml +++ b/pills/08-generic-builders.xml @@ -49,9 +49,11 @@ Nix on darwin - The darwin (i.e. macOS) stdenv diverges from the Linux stdenv in several ways. A main difference is that the darwin stdenv relies upon clang rather than gcc as its C compiler. We can adapt this early example of how a stdenv works for darwin by using this modified version of hello.nix: + Darwin (i.e. macOS) builds typically use clang rather than gcc for a C compiler. + We can adapt this early example for darwin by using this modified version of hello.nix: - Please be aware that similar changes may be needed in what follows. + Later, we will show how Nix can automatically handle these differences. + For now, please be just aware that changes similar to the above may be needed in what follows.