From patchwork Fri Jul 30 07:19:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anthony Green X-Patchwork-Id: 60338 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 2463C1007D3 for ; Fri, 30 Jul 2010 17:19:49 +1000 (EST) Received: (qmail 13366 invoked by alias); 30 Jul 2010 07:19:42 -0000 Received: (qmail 13351 invoked by uid 22791); 30 Jul 2010 07:19:38 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from smtpoutwbe05.prod.mesa1.secureserver.net (HELO smtpoutwbe05.prod.mesa1.secureserver.net) (208.109.78.207) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Fri, 30 Jul 2010 07:19:32 +0000 Received: (qmail 24463 invoked from network); 30 Jul 2010 07:19:31 -0000 Received: from unknown (HELO localhost) (72.167.218.131) by smtpoutwbe05.prod.mesa1.secureserver.net with SMTP; 30 Jul 2010 07:19:31 -0000 Received: (qmail 27343 invoked by uid 99); 30 Jul 2010 07:19:31 -0000 User-Agent: Web-Based Email 5.2.25 Message-Id: <20100730001931.aaa2c6acbe2fcbd4897bea2c255aade5.0da545d8e7.wbe@email03.secureserver.net> From: To: gcc-patches@gcc.gnu.org Subject: add moxie-rtems target Date: Fri, 30 Jul 2010 00:19:31 -0700 Mime-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I have a basic RTEMS port for moxie working. I've just committed this patch which simply adds support for the moxie-rtems target configuration. Thanks, AG 2010-07-30 Anthony Green * config/moxie/rtems.h: New file. * config.gcc: Add moxie-rtems support. Index: gcc/config.gcc =================================================================== --- gcc/config.gcc (revision 161959) +++ gcc/config.gcc (working copy) @@ -937,6 +938,10 @@ tm_defines="${tm_defines} DEFAULT_LIBC=LIBC_UCLIBC" extra_options="${extra_options} linux.opt" ;; +moxie-*-rtems*) + tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp moxie/t-rtems" + tm_file="moxie/moxie.h dbxelf.h elfos.h moxie/rtems.h rtems.h newlib-stdint.h" + ;; h8300-*-rtems*) tmake_file="h8300/t-h8300 h8300/t-elf t-rtems h8300/t-rtems" tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h newlib-stdint.h" Index: gcc/config/moxie/rtems.h =================================================================== --- gcc/config/moxie/rtems.h (revision 0) +++ gcc/config/moxie/rtems.h (revision 0) @@ -0,0 +1,29 @@ +/* Definitions for rtems targeting the Moxie core. + Copyright (C) 2010 Free Software Foundation, Inc. + Contributed by Anthony Green (green@moxielogic.com) + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3, or (at your option) +any later version. + +GCC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING3. If not see +. */ + +/* Target OS preprocessor built-ins. */ +#define TARGET_OS_CPP_BUILTINS() \ + do \ + { \ + builtin_define_std ("moxie"); \ + builtin_define ("__rtems__"); \ + builtin_assert ("system=rtems"); \ + } \ + while (0)