···3333 else if final.isAndroid then "bionic"3434 else if final.isLinux /* default */ then "glibc"3535 else if final.isAvr then "avrlibc"3636+ else if final.isNetBSD then "nblibc"3637 # TODO(@Ericson2314) think more about other operating systems3738 else "native/impure";3839 extensions = {
···5353 /**/ if libc == null then null5454 else if targetPlatform.libc == "musl" then "${libc_lib}/lib/ld-musl-*"5555 else if targetPlatform.libc == "bionic" then "/system/bin/linker"5656+ else if targetPlatform.libc == "nblibc" then "${libc_lib}/libexec/ld.elf_so"5657 else if targetPlatform.system == "i686-linux" then "${libc_lib}/lib/ld-linux.so.2"5758 else if targetPlatform.system == "x86_64-linux" then "${libc_lib}/lib/ld-linux-x86-64.so.2"5859 # ARM with a wildcard, which can be "" or "-armhf".