diff options
author | Martin Jambor <jamborm@gcc.gnu.org> | 2017-01-27 15:35:07 +0100 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2017-01-27 15:35:07 +0100 |
commit | f6a24a94a63abf72a349346c0af46426a63aba1a (patch) | |
tree | 5c230ebc44096ebc0fd8a1e52e8be49140663b98 /gcc/brig | |
parent | 71103b610487c068e1bb379724f6bba1eafedb08 (diff) | |
download | gcc-f6a24a94a63abf72a349346c0af46426a63aba1a.zip gcc-f6a24a94a63abf72a349346c0af46426a63aba1a.tar.gz gcc-f6a24a94a63abf72a349346c0af46426a63aba1a.tar.bz2 |
[brigfe] Small fixes
2017-01-27 Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
* configure.ac: Moved the white list of enabling BRIG FE to
libhsail-rt/configure.tgt.
* configure: Regenerated.
* MAINTAINERS: Updated maintainers for BRIG FE and libhsail-rt.
gcc/
* builtin-types.def: Use unsigned_char_type_node for BT_UINT8. Use
uint16_type_node for BT_UINT16.
gcc/brig/
* config-lang.in: Removed stale target-libbrig reference.
libhsail-rt/
* configure.tgt: Moved the white list of supported targets here
from configure.ac. Added i[3456789]86-*-linux* as a supported env
for the BRIG FE.
* README: Added a proper description of what libhsail-rt is.
From-SVN: r244978
Diffstat (limited to 'gcc/brig')
-rw-r--r-- | gcc/brig/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/brig/config-lang.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/brig/ChangeLog b/gcc/brig/ChangeLog index d947c5a..2906f50 100644 --- a/gcc/brig/ChangeLog +++ b/gcc/brig/ChangeLog @@ -1,3 +1,7 @@ +2017-01-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com> + + * config-lang.in: Removed stale target-libbrig reference. + 2017-01-26 Jakub Jelinek <jakub@redhat.com> Update copyright years. diff --git a/gcc/brig/config-lang.in b/gcc/brig/config-lang.in index ab139b3..e390a16 100644 --- a/gcc/brig/config-lang.in +++ b/gcc/brig/config-lang.in @@ -28,7 +28,7 @@ language="brig" compilers="brig1\$(exeext)" -target_libs="target-libbrig target-libhsail-rt" +target_libs="target-libhsail-rt" # The BRIG frontend is written in C++, so we need to build the C++ # compiler during stage 1. Note: when cross-compiling / not bootstrapping, |