Skip to content

Commit

Permalink
RTEMS/Ada: Change system configuration
Browse files Browse the repository at this point in the history
The previous system configuration led to undefined references to
__gnat_raise_nodefer_with_msg().

gcc/ada
	* libgnat/system-rtems.ads (Frontend_Exceptions): Set to False.
	(ZCX_By_Default): Set to True.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@262467 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
sh committed Jul 6, 2018
1 parent 141b6cc commit 2d1312f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions gcc/ada/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>

* libgnat/system-rtems.ads (Frontend_Exceptions): Set to False.
(ZCX_By_Default): Set to True.

2018-07-02 Martin Liska <mliska@suse.cz>

* gnatvsn.ads: Bump Library_Version to 9.
Expand Down
4 changes: 2 additions & 2 deletions gcc/ada/libgnat/system-rtems.ads
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private
Always_Compatible_Rep : constant Boolean := False;
Suppress_Standard_Library : constant Boolean := False;
Use_Ada_Main_Program_Name : constant Boolean := False;
Frontend_Exceptions : constant Boolean := True;
ZCX_By_Default : constant Boolean := False;
Frontend_Exceptions : constant Boolean := False;
ZCX_By_Default : constant Boolean := True;

end System;

0 comments on commit 2d1312f

Please sign in to comment.