diff options
author | Alexey Neyman <stilor@att.net> | 2017-01-19 17:13:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19 17:13:00 -0800 |
commit | dc3f68c8a5501fd745d079d724da389ea05566f8 (patch) | |
tree | 043291597ca10053bb6f8f51251882c053d27300 | |
parent | 2bd87c8614fbb80225b91c0ab5315ecf80e3d308 (diff) | |
parent | 272f62285d081a5c6551ba9347bdcf3d62d302e9 (diff) | |
download | crosstool-ng-dc3f68c8a5501fd745d079d724da389ea05566f8.tar.gz crosstool-ng-dc3f68c8a5501fd745d079d724da389ea05566f8.tar.bz2 crosstool-ng-dc3f68c8a5501fd745d079d724da389ea05566f8.zip |
Merge pull request #545 from dirkvdb/master
Gcc compilation fix when fortran is enabled
-rw-r--r-- | patches/gcc/6.3.0/900-libgfortran-missing-include.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/patches/gcc/6.3.0/900-libgfortran-missing-include.patch b/patches/gcc/6.3.0/900-libgfortran-missing-include.patch new file mode 100644 index 00000000..1f474696 --- /dev/null +++ b/patches/gcc/6.3.0/900-libgfortran-missing-include.patch @@ -0,0 +1,10 @@ +--- gcc-6.3.0/libgfortran/io/close.c.org 2017-01-17 09:43:48.395850000 +0100 ++++ gcc-6.3.0/libgfortran/io/close.c 2017-01-17 09:21:05.000000000 +0100 +@@ -25,6 +25,7 @@ + #include "io.h" + #include "unix.h" + #include <limits.h> ++#include <stdlib.h> + + typedef enum + { CLOSE_DELETE, CLOSE_KEEP, CLOSE_UNSPECIFIED } |