nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 63 lines 1.6 kB view raw
1{ 2 # TODO: fix up and send to upstream 3 "gcc/fix-collect2-paths.diff" = [ 4 { 5 after = "15"; 6 path = ../15; 7 } 8 ]; 9 10 # Submitted (001--003): 11 # - https://gcc.gnu.org/pipermail/gcc-patches/2021-August/577639.html 12 # - https://gcc.gnu.org/pipermail/gcc-patches/2021-August/577640.html 13 # - https://gcc.gnu.org/pipermail/gcc-patches/2021-August/577638.html 14 # 15 # In Git: https://github.com/Ericson2314/gcc/tree/prog-target-15 16 "gcc/0001-find_a_program-First-search-with-machine-prefix.patch" = [ 17 { 18 after = "15"; 19 path = ../15; 20 } 21 ]; 22 "gcc/0002-driver-for_each_pass-Pass-to-callback-whether-dir-is.patch" = [ 23 { 24 after = "15"; 25 path = ../15; 26 } 27 ]; 28 "gcc/0003-find_a_program-Only-search-for-prefixed-paths-in-und.patch" = [ 29 { 30 after = "15"; 31 path = ../15; 32 } 33 ]; 34 35 # In Git: https://github.com/Ericson2314/gcc/tree/regular-dirs-in-libgcc-15 36 "libgcc/force-regular-dirs.patch" = [ 37 { 38 after = "15"; 39 path = ../15; 40 } 41 ]; 42 # In Git: https://github.com/Ericson2314/gcc/tree/regular-dirs-in-libssp-15 43 "libssp/force-regular-dirs.patch" = [ 44 { 45 after = "15"; 46 path = ../15; 47 } 48 ]; 49 # In Git: https://github.com/Ericson2314/gcc/tree/libstdcxx-force-regular-dirs-15 50 "libstdcxx/force-regular-dirs.patch" = [ 51 { 52 after = "15"; 53 path = ../15; 54 } 55 ]; 56 # In Git: https://github.com/Ericson2314/gcc/tree/libgfortran-force-regular-dirs-15 57 "libgfortran/force-regular-dirs.patch" = [ 58 { 59 after = "15"; 60 path = ../15; 61 } 62 ]; 63}