guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/12: gnu: sdcc: Remove bundled μCsim.


From: guix-commits
Subject: 05/12: gnu: sdcc: Remove bundled μCsim.
Date: Mon, 21 Dec 2020 11:48:32 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 25b2d83d007e83d980c39cd09c38c641120e4366
Author: Simon South <simon@simonsouth.net>
AuthorDate: Mon Dec 14 13:00:20 2020 -0500

    gnu: sdcc: Remove bundled μCsim.
    
    * gnu/packages/sdcc.scm (sdcc)[source]: Extend snippet to remove bundled 
μCsim
    source.
    [arguments]<#:configure-flags>: Replace "--enable-ucsim" with
    "--disable-ucsim".
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/sdcc.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/sdcc.scm b/gnu/packages/sdcc.scm
index aad2cf9..0ce71ed 100644
--- a/gnu/packages/sdcc.scm
+++ b/gnu/packages/sdcc.scm
@@ -46,6 +46,8 @@
                '(begin
                   ;; Remove non-free source files
                   (delete-file-recursively "device/non-free")
+                  ;; Remove bundled μCsim source
+                  (delete-file-recursively "sim")
                   #t))
               (patches (search-patches "sdcc-disable-non-free-code.patch"))))
     (build-system gnu-build-system)
@@ -58,7 +60,7 @@
     (arguments
      `(;; gputils is required for PIC ports
        #:configure-flags
-       '("--disable-pic14-port" "--disable-pic16-port" "--enable-ucsim")
+       '("--disable-pic14-port" "--disable-pic16-port" "--disable-ucsim")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-makefile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]