This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix config.gcc


I've committed this to fix the build breakage:

In file included from ./plugin-version.h:1:0, from /data/users/nathans/trunk/obj/x86_64/../../src/gcc/plugin.c:34:
./configargs.h:7:33: error: expected primary-expression before ';' token
 } configure_default_options[] = ;

It seems Thomas' recent config.gcc commit missed a closing 'fi'

nathan
--
Nathan Sidwell
2017-05-05  Nathan Sidwell  <nathan@acm.org>

	* config.gcc (arm*-*-*): Add missing 'fi'.

Index: config.gcc
===================================================================
--- config.gcc	(revision 247647)
+++ config.gcc	(working copy)
@@ -3803,6 +3803,7 @@ case "${target}" in
 						;;
 					esac
 				done
+			fi				
 
 			if test "x${tmake_profile_file}" != x ; then
 				# arm/t-aprofile and arm/t-rmprofile are only

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]