Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb
16166 views
1
--- src/ghdldrv/ghdldrv.adb.orig 2021-02-02 19:52:50 UTC
2
+++ src/ghdldrv/ghdldrv.adb
3
@@ -483,7 +483,7 @@ package body Ghdldrv is
4
Cmd.Assembler_Cmd := new String'("as");
5
end if;
6
if Cmd.Linker_Cmd = null then
7
- Cmd.Linker_Cmd := new String'("gcc");
8
+ Cmd.Linker_Cmd := new String'("cc");
9
end if;
10
end Set_Tools_Name;
11
12
@@ -755,8 +755,8 @@ package body Ghdldrv is
13
Put_Line (" Set the path of the ghdl1 compiler");
14
Put_Line (" --AS=as");
15
Put_Line (" Use as for the assembler");
16
- Put_Line (" --LINK=gcc");
17
- Put_Line (" Use gcc for the linker driver");
18
+ Put_Line (" --LINK=cc");
19
+ Put_Line (" Use cc for the linker driver");
20
Put_Line (" -S");
21
Put_Line (" Do not assemble");
22
Put_Line (" -o FILE");
23
24