about summary refs log tree commit diff
path: root/pkgs/stdenv/linux
Commit message (Collapse)AuthorAge
* treewide: remove redundant quotesvolth2019-08-26
|
* treewide: Remove usage of isNullDaniel Schaefer2019-04-29
| | | | isNull "is deprecated; just write e == null instead" says the Nix manual
* stdenv/linux: use isCompatible to find bootstrap toolsMatthew Bauer2019-04-19
| | | | | | This avoids part of the issue where things like armv7a don’t work because the system doesn’t realize it can use the armv7l bootstrap tools.
* Merge pull request #51628 from ju1m/armMatthew Bauer2019-03-01
|\ | | | | stdenv: add armv7a-linux system
| * stdenv: add armv7a-linux systemJulien Moutinho2018-12-06
| |
* | Merge master into staging-nextFrederik Rietdijk2019-01-02
|\ \
| * \ Merge pull request #36384 from dtzWill/musl-native-bootstrapWill Dietz2018-12-31
| |\ \ | | | | | | | | x86_64-musl bootstrap: refresh bootstrap tools package
| | * | x86_64-musl bootstrap regen, much smallerWill Dietz2018-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | compressed: 28M -> 20M uncompressed: 201M -> 119M Built using: https://github.com/NixOS/nixpkgs/commit/94f3dc4fdf0c6b32816d67f422d8220e9954c76e cc https://github.com/NixOS/nixpkgs/pull/36383
| | * | x86_64-musl: regen again w/symlinks preservedWill Dietz2018-03-06
| | | |
| | * | x86_64-musl: use native-built bootstrap package on x86_64Will Dietz2018-03-06
| | | | | | | | | | | | | | | | | | | | Built using: https://github.com/NixOS/nixpkgs/commits/46f83fa9d1bf00b09b1e9a9aa83f577c246ac674
* | | | treewide: remove paxutils from stdenvJörg Thalheim2018-12-22
|/ / / | | | | | | | | | | | | | | | | | | More then one year ago we removed grsecurity kernels from nixpkgs: https://github.com/NixOS/nixpkgs/pull/25277 This removes now also paxutils from stdenv.
* | | Merge master into staging-nextFrederik Rietdijk2018-12-07
|\ \ \
| * | | stdenv: implement crossOverlaysMatthew Bauer2018-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | crossOverlays only apply to the packages being built, not the build packages. It is useful when you don’t care what is used to build your packages, just what is being built. The idea relies heavily on the cross compiling infrastructure. Using this implies that we need to create a cross stdenv.
* | | | Merge branch 'pr-46056' into stagingLéo Gaspard2018-11-28
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | * pr-46056: binutils: use shared libs binutils: fix #44936 the huge size regression
| * | | binutils: use shared libsVladimír Čunát2018-09-04
| | | |
* | | | Merge remote-tracking branch 'upstream/master' into release-lib-cleanupJohn Ericson2018-11-01
|\ \ \ \
| * \ \ \ Merge pull request #47245 from dtzWill/fix/coreutils-8.30-bootstrapxeji2018-09-25
| |\ \ \ \ | | | | | | | | | | | | coreutils: try 8.30 again, fix bootstrap tools expression motivating revert before
| | * | | | make-bootstrap-tools: fix with latest coreutilsWill Dietz2018-09-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since gcc.lib/lib64 is a symlink to 'lib', the use of "lib*/libgcc_s.so*" triggered a warning (error) with the latest coreutils. Essentially we were doing: $ cp a/x b/x y/ And latest coreutils rejects such invocations. Just copy from 'lib', lib64 is a link to it anyway. * Nothing else in this file bothers looking at lib* * AFAICT lib* only ever possibly matched lib64 anyway
| * | | | | bintools-wrapper, cc-wrapper, stdenv: infer propagateDoc automaticallyJan Malakhovski2018-09-23
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 02c09e01712ce0b61e5c8f7159047699a434f7fc (NixOS/nixpkgs#44558) was reverted in c981787db951afb11c1328461df82d4277ebec07 but, as it turns out, it fixed an issue I didn't know about at the time: the values of `propagateDoc` options were (and now again are) inconsistent with the underlying things those wrappers wrap (see NixOS/nixpkgs#46119), which was (and now is) likely to produce more instances of NixOS/nixpkgs#43547, if not now, then eventually as stdenv changes. This patch (which is a simplified version of the original reverted patch) is the simplest solution to this whole thing: it forces wrappers to directly inspect the outputs of the things they are wrapping instead of making stdenv guess the correct values.
| * | | | Merge pull request #46857 from obsidiansystems/darwin-to-linux-prepJohn Ericson2018-09-18
| |\ \ \ \ | | |_|_|/ | |/| | | misc pkgs: various cross fixes in preparation for darwin->linux
| * | | | stdenv: linux: cleanup a bitJan Malakhovski2018-09-04
| | |/ / | |/| |
* | | | linux bootstrap tools: Use right system for some raw derivationsJohn Ericson2018-11-01
| | | | | | | | | | | | | | | | | | | | | | | | This allows cross builds to work. Evidentallyy this has been done wrong since I combined the bootstrap tool creation files in ab651d2c9bab620ebe5e515476fbd70d2c5b0c61. Oops!
* | | | linux bootstrap-tools: use `stdenv.*Platform` to avoid deprecation warningJohn Ericson2018-11-01
| |/ / |/| |
* | | stdenv linux, stdenv cross: Harmonize extraNativeBuildInputsJohn Ericson2018-09-18
|/ / | | | | | | Want to make sure these are the same per host platform, without duplication.
* | treewide: Remove usage of remaining redundant platform compatability stuffJohn Ericson2018-08-30
| | | | | | | | | | Want to get this out of here for 18.09, so it can be deprecated thereafter.
* | [RFC] ppc64le enablement (#45340)CrystalGamma2018-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ppc64le enablement * gcc, glibc: properly handle __float128 * lib/systems, stdenv: syntax cleanup * gcc7: remove ugly hack * gcc: add/update __float128 flags * stdenv: add another pair of quotes for consistency * gcc: move __float128 flag for ppc64le-glibc into common/platform-flags.nix
* | stdenv: linux: inherit texinfo in stage4 instead of the final stdenvJan Malakhovski2018-08-12
| | | | | | | | | | | | This reverts commit a809fdc8e1b0c1d49d40815d9bac0de27ddab5f1 and then achieves the same result (not rebuilding texinfo three times) but without dragging bootstrap tools into the closure.
* | Revert "cc-wrapper, bintools-wrapper: simply symlink man and info outputs"Eelco Dolstra2018-08-09
| | | | | | | | This reverts commit 02c09e01712ce0b61e5c8f7159047699a434f7fc.
* | cc-wrapper, bintools-wrapper: simply symlink man and info outputsJan Malakhovski2018-08-06
| | | | | | | | See discussion in #44516.
* | make-bootstrap-tools-cross: remove broken i686-musl variantWill Dietz2018-06-25
| | | | | | | | | | Not terribly difficult to get this working, but until it does remove it so the cross jobset doesn't have the failures this introduces.
* | Merge pull request #40040 from obsidiansystems/gnu-config-armJohn Ericson2018-05-14
|\ \ | | | | | | gnu-config: Update, allowing hacks to be removed
| * \ Merge remote-tracking branch 'upstream/master' into gnu-config-armJohn Ericson2018-05-14
| |\ \
| * | | linux stdenv: Update gnu-config on all non-x86John Ericson2018-05-14
| | | | | | | | | | | | | | | | | | | | Not just Aarch64. Other non-x86 platforms might be old enough, but I am about to update gnu-config to handle things better across the board.
* | | | Merge branch 'staging' into fix-ncurses-darwin-extensionsMatthew Justin Bauer2018-05-02
|\ \ \ \ | |_|/ / |/| | |
| * | | Merge pull request #39457 from oxij/stdenv/texinfo-bashMichael Raskin2018-04-27
| |\ \ \ | | | | | | | | | | stdenv: change texinfo bootstrap handling; texinfo, bash: simplify expressions
| | * | | stdenv: linux: stop recompiling `texinfo`Jan Malakhovski2018-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | This makes stdenv bootstraping a bit more efficient. We don't recompile most of other stuff used in bootstrapping stdenv too.
| * | | | linux bootstrap: remove assertion failure from dev, fixes 'nix eval'Will Dietz2018-04-26
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As in: $ nix eval -f . bash Also remove the glibc propagation inherit that made these necessary, stages handle propagating libc themselves (apparently) and AFAICT no hashes are changed as a result of this.
* | | | musl-stdenv: don't add special allowance for libiconvWill Dietz2018-04-25
| | | |
* | | | musl bootstrap: remove libiconvWill Dietz2018-04-24
|/ / /
* | | binutils: No more darwin conditionalsJohn Ericson2018-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since at least d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410, we've had a situation where one should depend on: - `stdenv.cc.bintools`: for executables at build time - `libbfd` or `libiberty`: for those libraries - `targetPackages.cc.bintools`: for exectuables at *run* time - `binutils`: only for specifically GNU Binutils's executables, regardless of the host platform, at run time. and that commit cleaned up this usage to reflect that. This PR flips the switch so that: - `binutils` is indeed unconditionally GNU Binutils - `binutils-raw`, which previously served that role, is gone. so that the correct usage will be enforced going forward and everything is simple. N.B. In a few cases `binutils-unwrapped` (which before and now was unconditionally actual GNU binutils), rather than `binutils` was used to replace old `binutils-raw` as it is friendly towards some cross compilation usage by avoiding a reference to the next bootstrapping change.
* | | Merge branch 'master' into stagingJan Malakhovski2018-03-10
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | Resolved the following conflicts (by carefully applying patches from the both branches since the fork point): pkgs/development/libraries/epoxy/default.nix pkgs/development/libraries/gtk+/3.x.nix pkgs/development/python-modules/asgiref/default.nix pkgs/development/python-modules/daphne/default.nix pkgs/os-specific/linux/systemd/default.nix
| * | make-bootstrap-tools: preserve coreutils symlinksWill Dietz2018-03-06
| |/ | | | | | | | | | | We go out of our way (see top of file) to build a single binary with symlinks for all of the tools, but were losing them when preparing the bootstrap tools.
* | Merge remote-tracking branch 'upstream/master' into stagingTuomas Tynkkynen2018-02-28
|\| | | | | | | | | | | | | Conflicts: pkgs/applications/misc/pytrainer/default.nix pkgs/development/tools/pew/default.nix pkgs/tools/misc/you-get/default.nix
| * Merge pull request #35247 from telent/mips32John Ericson2018-02-27
| |\ | | | | | | lib, treewide: Add missing MIPS arches, and fix existing usage
| | * lib, treewide: Add missing MIPS arches, and fix existing usageDaniel Barlow2018-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | Existing "mips64el" should be "mipsel". This is just the barest minimum so that nixpkgs can recognize them as systems - although required for building individual derivations onto MIPS boards, it is not sufficient if you want to actually build nixos on those targets
* | | Merge pull request #35071 from oxij/stdenv/infopagesJohn Ericson2018-02-26
|\ \ \ | |/ / |/| | stdenv, bash: fixing info pages and stuff
| * | stdenv: linux: give distinct names to all the stagesJan Malakhovski2018-02-26
| | | | | | | | | | | | Mainly for debugging.
| * | stdenv: linux, darwin: don't build documentation for the the intermediate stagesJan Malakhovski2018-02-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | For the cc of the intermediate stages, to be precise. Doing the same for bintools requires lots of refactoring. This is mainly for the future extensibility as now you can change documentation generation with impunity without rebuilding the whole of stdenv.
* | | Merge branch 'master' into gcc-7Shea Levy2018-02-18
|\ \ \ | | |/ | |/|
| * | Enable building riscv64 cross bootstrap toolsShea Levy2018-02-18
| |/ | | | | | | Fixes #35089