Path: blob/main/cad/ghdl/files/patch-src_ghdldrv_ghdldrv.adb
16166 views
--- src/ghdldrv/ghdldrv.adb.orig 2021-02-02 19:52:50 UTC1+++ src/ghdldrv/ghdldrv.adb2@@ -483,7 +483,7 @@ package body Ghdldrv is3Cmd.Assembler_Cmd := new String'("as");4end if;5if Cmd.Linker_Cmd = null then6- Cmd.Linker_Cmd := new String'("gcc");7+ Cmd.Linker_Cmd := new String'("cc");8end if;9end Set_Tools_Name;1011@@ -755,8 +755,8 @@ package body Ghdldrv is12Put_Line (" Set the path of the ghdl1 compiler");13Put_Line (" --AS=as");14Put_Line (" Use as for the assembler");15- Put_Line (" --LINK=gcc");16- Put_Line (" Use gcc for the linker driver");17+ Put_Line (" --LINK=cc");18+ Put_Line (" Use cc for the linker driver");19Put_Line (" -S");20Put_Line (" Do not assemble");21Put_Line (" -o FILE");222324