diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-02-04 01:01:48 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-02-04 01:01:48 +0000 |
commit | 53bafecbf0b23b0ca85db504021a0d293fe9bf98 (patch) | |
tree | 793758f4256a8f43bb6c36a10f1e4c6627550ce8 /cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb | |
parent | net/py-zeroconf: update to version 0.28.8 (diff) |
cad/ghdl: Update 0.37 -> 1.0.0
Reported by: portscout
Diffstat (limited to 'cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb')
-rw-r--r-- | cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb b/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb index 472221455770..f0580665f79d 100644 --- a/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb +++ b/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb @@ -1,11 +1,22 @@ ---- src/ghdldrv/ghdldrv.adb.orig 2019-10-23 05:39:27 UTC +--- src/ghdldrv/ghdldrv.adb.orig 2021-02-02 19:52:50 UTC +++ src/ghdldrv/ghdldrv.adb -@@ -460,7 +460,7 @@ package body Ghdldrv is - Assembler_Cmd := new String'("as"); +@@ -483,7 +483,7 @@ package body Ghdldrv is + Cmd.Assembler_Cmd := new String'("as"); end if; - if Linker_Cmd = null then -- Linker_Cmd := new String'("gcc"); -+ Linker_Cmd := new String'("cc"); + if Cmd.Linker_Cmd = null then +- Cmd.Linker_Cmd := new String'("gcc"); ++ Cmd.Linker_Cmd := new String'("cc"); end if; end Set_Tools_Name; +@@ -755,8 +755,8 @@ package body Ghdldrv is + Put_Line (" Set the path of the ghdl1 compiler"); + Put_Line (" --AS=as"); + Put_Line (" Use as for the assembler"); +- Put_Line (" --LINK=gcc"); +- Put_Line (" Use gcc for the linker driver"); ++ Put_Line (" --LINK=cc"); ++ Put_Line (" Use cc for the linker driver"); + Put_Line (" -S"); + Put_Line (" Do not assemble"); + Put_Line (" -o FILE"); |