From patchwork Wed Jun 4 16:21:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Omair Javaid X-Patchwork-Id: 1309 Received: (qmail 3039 invoked by alias); 4 Jun 2014 16:21:40 -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 2931 invoked by uid 89); 4 Jun 2014 16:21:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wg0-f50.google.com Received: from mail-wg0-f50.google.com (HELO mail-wg0-f50.google.com) (74.125.82.50) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 04 Jun 2014 16:21:37 +0000 Received: by mail-wg0-f50.google.com with SMTP id x12so8594821wgg.33 for ; Wed, 04 Jun 2014 09:21:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Z46S1YW4jWfip16/vntMY9zK9fPU12K5GQktbjyW+k8=; b=FuwToOWtbcgBh1kY9YvDlUdjC82fWP8K7JFx5vpnUYCvi/TyYZSJGyAJh16K0xsBTm vI2cAbgYdKuis7YXketfVdILf5r9Ckam8IzjeM5MBz7xNzSxP7sRIPKLwrgONySwsVsX 5W5PT4983RYMAghmaUhlAALaHVx141mG9u6d3M3rozBvhsI60USYAn+GWTLavPmGydm5 vDbacXy7nRBjjPD7fyx5QNq53tdRC3+59a9iI3PtehV9hZqL8vlYIfs0v4OlBQxJwhz8 GKkEh3PWikwyYj46cld/Sl8G9N9S7qmM3++iFwQS2dqoUNZCQYP1mPV1NpwLjV/T1DjS 3i3g== X-Gm-Message-State: ALoCoQk1o0tRXuvNk44OuypSdqxJc6Aqdm8xcA0cxcXYXBqWx71OCctXOUj1tXeLaBxJYz62q9CJ X-Received: by 10.194.80.161 with SMTP id s1mr26302827wjx.47.1401898894572; Wed, 04 Jun 2014 09:21:34 -0700 (PDT) Received: from localhost.localdomain ([182.185.152.186]) by mx.google.com with ESMTPSA id um7sm2677062wjc.12.2014.06.04.09.21.31 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 04 Jun 2014 09:21:33 -0700 (PDT) From: Omair Javaid To: gdb-patches@sourceware.org Cc: Omair Javaid Subject: [PATCH 3/7] Enable gdb process record on aarch64-linux targets Date: Wed, 4 Jun 2014 21:21:07 +0500 Message-Id: <1401898871-2270-4-git-send-email-omair.javaid@linaro.org> In-Reply-To: <1401898871-2270-1-git-send-email-omair.javaid@linaro.org> References: <1401898871-2270-1-git-send-email-omair.javaid@linaro.org> X-IsSubscribed: yes This patch adds linux-record.o to gdb_target_obs in configure.tgt for aarch64*-linux* targets. gdb: 2014-06-04 Omair Javaid * configure.tgt: Add linux-record.o to gdb_target_obs. --- gdb/configure.tgt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 01311b2..e9b906f 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -41,7 +41,7 @@ aarch64*-*-linux*) # Target: AArch64 linux gdb_target_obs="aarch64-tdep.o aarch64-linux-tdep.o \ glibc-tdep.o linux-tdep.o solib-svr4.o \ - symfile-mem.o" + symfile-mem.o linux-record.o" build_gdbserver=yes ;;