diff options
author | David Michael <fedora.dm0@gmail.com> | 2017-05-06 12:20:46 -0700 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-05-07 13:50:38 +0200 |
commit | e1a6cb7723b350fec2b315da89fa7d2e215ccbf4 (patch) | |
tree | c8704088e53acc0e79533fe8f8717b92ff51ef93 /Makefile.am | |
parent | 9a8f8027a716483fe4178154a146436b10fc45ae (diff) | |
download | gnumach-e1a6cb7723b350fec2b315da89fa7d2e215ccbf4.tar.gz gnumach-e1a6cb7723b350fec2b315da89fa7d2e215ccbf4.tar.bz2 gnumach-e1a6cb7723b350fec2b315da89fa7d2e215ccbf4.zip |
Support GCC 7
* Makefile.am (clib_routines): Add __udivmoddi4.
* linux/src/include/linux/compiler-gcc7.h: New file.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 67252db8..e7527ab9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -162,7 +162,7 @@ noinst_PROGRAMS += \ # This is the list of routines we decide is OK to steal from the C library. clib_routines := htonl htons ntohl ntohs \ - udivdi3 __udivdi3 __umoddi3 \ + udivdi3 __udivdi3 __udivmoddi4 __umoddi3 \ __rel_iplt_start __rel_iplt_end \ __ffsdi2 \ _START _start etext _edata end _end # actually ld magic, not libc. |