about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-05-29 20:12:06 -0400
committerJohn Ericson <Ericson2314@Yahoo.com>2017-05-29 20:12:06 -0400
commitc66ff8ec3ce37a01659294efc36c4ab5e3036462 (patch)
tree49110a082cd67fcba9285e6043b51c1216bfdeb6 /lib
parent20e756a0936fb75ce8f9d9ef0b7a511198bf7eea (diff)
downloadnixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar.gz
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar.bz2
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar.lz
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar.xz
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.tar.zst
nixlib-c66ff8ec3ce37a01659294efc36c4ab5e3036462.zip
cross tests and stdenv: armv5te*l* of sheevaplug explicit
The "l" suffix presumably indicates it is little-endian, which it
is.
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/examples.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index da9b95a6454d..3ffaf393435e 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -10,9 +10,9 @@ rec {
   #
 
   sheevaplug = rec {
-    config = "armv5te-unknown-linux-gnueabi";
+    config = "armv5tel-unknown-linux-gnueabi";
     bigEndian = false;
-    arch = "armv5te";
+    arch = "armv5tel";
     float = "soft";
     withTLS = true;
     libc = "glibc";