all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Morgan.J.Smith@outlook.com
To: 48767@debbugs.gnu.org
Cc: Morgan Smith <Morgan.J.Smith@outlook.com>
Subject: [bug#48767] [PATCH 1/6] gnu: Add gcc-msp430-support-files.
Date: Sun, 26 Sep 2021 10:51:50 -0400	[thread overview]
Message-ID: <SN6PR05MB4031380C2AF40FB072970869C5A69@SN6PR05MB4031.namprd05.prod.outlook.com> (raw)
In-Reply-To: <BYAPR05MB402338010B759846D3148453C53F9@BYAPR05MB4023.namprd05.prod.outlook.com>

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/embedded.scm (gcc-msp430-support-files): New variable.
---
 gnu/packages/embedded.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index f388c11c3d..f1f17e83a7 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -33,6 +33,7 @@
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system cmake)
+  #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
   #:use-module (guix build-system trivial)
@@ -501,6 +502,34 @@ languages are C and C++.")
                            "--disable-nls")
      ,@(package-arguments gdb)))))
 
+(define-public gcc-msp430-support-files
+  (package
+    (name "gcc-msp430-support-files")
+    (version "1.212")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://software-dl.ti.com/msp430/msp430_public_sw/"
+                                  "mcu/msp430/MSPGCC/9_3_1_2/export/"
+                                  "msp430-gcc-support-files-" version ".zip"))
+
+              (sha256
+               (base32
+                "1mmqn1gql4sv369nks1v05jw1x6fpqssqq3yfvxzwk9l1bqkj6iv"))))
+    (build-system copy-build-system)
+    (home-page "https://www.ti.com/tool/MSP430-GCC-OPENSOURCE")
+    (synopsis "GCC headers and linker scripts for MSP430 microcontrollers")
+    (description "GCC headers and linker scripts for MSP430 microcontrollers")
+    (native-search-paths
+     (list (search-path-specification
+            (variable "CROSS_C_INCLUDE_PATH")
+            (files '("include")))
+           (search-path-specification
+            (variable "CROSS_LIBRARY_PATH")
+            (files '("include")))))
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (license license:bsd-3)))
+
 (define-public libjaylink
   (package
     (name "libjaylink")
-- 
2.33.0





  parent reply	other threads:[~2021-09-26 14:53 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-31 23:08 [bug#48767] [PATCH 0/7] Add msp430 toolchain Morgan Smith
2021-06-01  3:09 ` [bug#48767] [PATCH 1/7] gnu: Add gcc-msp430-support-files Morgan.J.Smith
2021-09-26 14:51 ` Morgan.J.Smith [this message]
2021-09-27 21:59 ` [bug#48767] [PATCH] gnu: gcc-arm-none-eabi-7-2018-q2-update: Simplify build Morgan.J.Smith
2021-10-01  8:56   ` Maxime Devos
2022-08-16 15:34 ` [bug#48767] [PATCH 0/7] Add msp430 toolchain Jean Pierre De Jesus DIAZ via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=SN6PR05MB4031380C2AF40FB072970869C5A69@SN6PR05MB4031.namprd05.prod.outlook.com \
    --to=morgan.j.smith@outlook.com \
    --cc=48767@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.