From patchwork Wed Dec 9 11:34:45 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tristan Gingold X-Patchwork-Id: 9945 Received: (qmail 35937 invoked by alias); 9 Dec 2015 11:34:49 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 35919 invoked by uid 89); 9 Dec 2015 11:34:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 09 Dec 2015 11:34:48 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id E353A3000BE7 for ; Wed, 9 Dec 2015 12:34:45 +0100 (CET) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ETV9pd2HvXCm for ; Wed, 9 Dec 2015 12:34:45 +0100 (CET) Received: from dhcp-guest-231.act-europe.fr (dhcp-guest-231.act-europe.fr [10.10.127.231]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id D547C3000BE3 for ; Wed, 9 Dec 2015 12:34:45 +0100 (CET) From: Tristan Gingold Subject: [PATCH/sim]: Fix aarch64 simulator build Message-Id: <77A7E783-9DF2-4F88-99F3-C3D97024074C@adacore.com> Date: Wed, 9 Dec 2015 12:34:45 +0100 To: GDB Patches Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) X-IsSubscribed: yes The simulator is including syscall.h which is not standard and apparently not required (builds correctly without it on my machine). Ok to push ? Tristan. sim aarch64: fix build sim/ * aarch64/simulator.c: Remove syscall.h include. diff --git a/sim/ChangeLog b/sim/ChangeLog index 76d75c9..3e64ef4 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,7 @@ +2015-12-09 Tristan Gingold + + * aarch64/simulator.c: Remove syscall.h include. + 2015-11-24 Nick Clifton * configure.tgt: Add aarch64 entry. diff --git a/sim/aarch64/simulator.c b/sim/aarch64/simulator.c index 31c054c..2a994dd 100644 --- a/sim/aarch64/simulator.c +++ b/sim/aarch64/simulator.c @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include