diff options
author | gingold | 2012-12-11 02:46:11 +0000 |
---|---|---|
committer | gingold | 2012-12-11 02:46:11 +0000 |
commit | 560c4c42f15155771b5558c37cec7a1acbb48751 (patch) | |
tree | ef3a6144800e7ae38d4caab31ab1be9eb29d6cd7 /translate/ghdldrv/ghdldrv.adb | |
parent | 03cc455ed44229ecd2b925e110f9019c4e6f497b (diff) | |
download | ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.tar.gz ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.tar.bz2 ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.zip |
Part of the previous commit (upgrade to gcc 4.7)
Diffstat (limited to 'translate/ghdldrv/ghdldrv.adb')
-rw-r--r-- | translate/ghdldrv/ghdldrv.adb | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/translate/ghdldrv/ghdldrv.adb b/translate/ghdldrv/ghdldrv.adb index 438227d..dde8a40 100644 --- a/translate/ghdldrv/ghdldrv.adb +++ b/translate/ghdldrv/ghdldrv.adb @@ -671,6 +671,11 @@ package body Ghdldrv is Add_Argument (Compiler_Args, new String'(Opt)); Flag_Expect_Failure := True; Res := Option_Ok; + elsif Opt = "-C" then + -- Translate -C into --mb-comments, as gcc already has a definition + -- for -C. Done before Flags.Parse_Option. + Add_Argument (Compiler_Args, new String'("--mb-comments")); + Res := Option_Ok; elsif Options.Parse_Option (Opt) then Add_Argument (Compiler_Args, new String'(Opt)); Res := Option_Ok; @@ -888,22 +893,21 @@ package body Ghdldrv is procedure Bind_Anaelab (Files : Argument_List) is - Comp_List : Argument_List (1 .. 2 * Files'Length + 2); - Flag_C : String_Access; + Comp_List : Argument_List (1 .. Files'Length + 2); Index : Natural; begin Comp_List (1) := new String'("--anaelab"); Comp_List (2) := Unit_Name; - Flag_C := new String'("-c"); Index := 3; for I in Files'Range loop - Comp_List (Index) := Flag_C; - Comp_List (Index + 1) := Files (I); - Index := Index + 2; + Comp_List (Index) := new String'("--ghdl-source=" & Files (I).all); + Index := Index + 1; end loop; Do_Compile (Comp_List, Elab_Name.all); - Free (Flag_C); Free (Comp_List (1)); + for I in 3 .. Comp_List'Last loop + Free (Comp_List (I)); + end loop; end Bind_Anaelab; procedure Link (Add_Std : Boolean; |