···11+diff --git a/configure b/configure22+index d45e88f..25d872b 10075533+--- a/configure44++++ b/configure55+@@ -322,7 +322,14 @@ case "$bytecc,$target" in66+ bytecccompopts="-fno-defer-pop $gcc_warnings -DSHRINKED_GNUC"77+ mathlib="";;88+ *,*-*-darwin*)99+- bytecccompopts="-fno-defer-pop $gcc_warnings"1010++ # On recent version of OSX, gcc is a symlink to clang1111++ if $bytecc --version | grep -q clang; then1212++ # -fno-defer-pop is not supported by clang, and make recent1313++ # versions of clang to fail1414++ bytecccompopts="$gcc_warnings"1515++ else1616++ bytecccompopts="-fno-defer-pop $gcc_warnings"1717++ fi1818+ mathlib=""1919+ mkexe="$mkexe -Wl,-no_compact_unwind"2020+ # Tell gcc that we can use 32-bit code addresses for threaded code
+1
pkgs/development/tools/misc/sloccount/default.nix
···31313232 configurePhase = ''3333 sed -i "makefile" -"es|PREFIX[[:blank:]]*=.*$|PREFIX = $out|g"3434+ sed -i "makefile" -"es|gcc|$CC|g"3435 '';35363637 doCheck = true;
+1-1
pkgs/shells/fish/default.nix
···3131 description = "Smart and user-friendly command line shell";3232 homepage = "http://fishshell.com/";3333 license = licenses.gpl2;3434- platforms = platforms.linux;3434+ platforms = platforms.unix;3535 maintainers = with maintainers; [ ocharles ];3636 };3737}