aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-08-01 07:52:36 +0200
committerTristan Gingold <tgingold@free.fr>2021-08-01 07:53:32 +0200
commitb72f46a096f4d989717e6bd268cc969227ca8c4e (patch)
tree5e8de0ceabc1ed7e73588a78a98b1bf48abb5ec0
parentffeafae39d6097b0c1d0a4d63f48afa9654938a1 (diff)
downloadghdl-b72f46a096f4d989717e6bd268cc969227ca8c4e.tar.gz
ghdl-b72f46a096f4d989717e6bd268cc969227ca8c4e.tar.bz2
ghdl-b72f46a096f4d989717e6bd268cc969227ca8c4e.zip
ghdldrv.adb: use cc (instead of gcc) as linker driver. Fix #1629
-rw-r--r--src/ghdldrv/ghdldrv.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ghdldrv/ghdldrv.adb b/src/ghdldrv/ghdldrv.adb
index 01dc222b3..acd125765 100644
--- a/src/ghdldrv/ghdldrv.adb
+++ b/src/ghdldrv/ghdldrv.adb
@@ -485,7 +485,7 @@ package body Ghdldrv is
Cmd.Assembler_Cmd := new String'("as");
end if;
if Cmd.Linker_Cmd = null then
- Cmd.Linker_Cmd := new String'("gcc");
+ Cmd.Linker_Cmd := new String'("cc");
end if;
end Set_Tools_Name;