From e63f46a0cee57573db2c0dc5d4008c5052cd4811 Mon Sep 17 00:00:00 2001
From: Marco A L Barbosa <malbarbo@gmail.com>
Date: Fri, 27 Oct 2017 13:15:32 -0200
Subject: [PATCH] Add issue for linux x32 failing to build

---
 .travis.yml | 2 ++
 ci/run.sh   | 1 +
 2 files changed, 3 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 3bac9449..11f5c775 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -94,6 +94,8 @@ matrix:
       osx_image: xcode8.3
       rust: nightly
     # not available on stable
+    # without --release the build fails
+    # see https://github.com/rust-lang/rust/issues/45417
     - env: TARGET=x86_64-unknown-linux-gnux32 OPT="--release"
       rust: nightly
 
diff --git a/ci/run.sh b/ci/run.sh
index 65d716e9..420542a5 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -69,6 +69,7 @@ if [ "$QEMU" != "" ]; then
 fi
 
 # FIXME: x86_64-unknown-linux-gnux32 fail to compile wihout --release
+# See https://github.com/rust-lang/rust/issues/45417
 opt=
 if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then
   opt="--release"
-- 
GitLab