From e6271f14b095d7d8b2638c2b5e07d0d5cd05bc14 Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Sun, 21 Jan 2024 20:31:36 -0300 Subject: [PATCH] Pass `-irix-symtab` to as (#7) --- gcc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc.c b/gcc.c index d83281c..4d4f74b 100644 --- a/gcc.c +++ b/gcc.c @@ -628,7 +628,7 @@ static struct compiler default_compilers[] = %{aux-info*}\ %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\ %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\ - %{!S:as %a %Y %{mabi*}\ + %{!S:as %a %Y %{mabi*} %{irix-symtab}\ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ %{!pipe:%g.s} %A\n }}}}"}, {"-", @@ -663,7 +663,7 @@ static struct compiler default_compilers[] = %{aux-info*}\ %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\ %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\ - %{!S:as %a %Y %{mabi*}\ + %{!S:as %a %Y %{mabi*} %{irix-symtab}\ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ %{!pipe:%g.s} %A\n }}}}"}, {".h", "@c-header"}, @@ -687,12 +687,12 @@ static struct compiler default_compilers[] = %{aux-info*}\ %{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\ %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\ - %{!S:as %a %Y %{mabi*}\ + %{!S:as %a %Y %{mabi*} %{irix-symtab}\ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ %{!pipe:%g.s} %A\n }}}}"}, {".s", "@assembler"}, {"@assembler", - "%{!M:%{!MM:%{!E:%{!S:as %a %Y %{mabi*}\ + "%{!M:%{!MM:%{!E:%{!S:as %a %Y %{mabi*} %{irix-symtab}\ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ %i %A\n }}}}"}, {".S", "@assembler-with-cpp"}, @@ -705,7 +705,7 @@ static struct compiler default_compilers[] = %{traditional-cpp:-traditional}\ %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*} %{U*} %{i*} %Z\ %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n", - "%{!M:%{!MM:%{!E:%{!S:as %a %Y %{mabi*}\ + "%{!M:%{!MM:%{!E:%{!S:as %a %Y %{mabi*} %{irix-symtab}\ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ %{!pipe:%g.s} %A\n }}}}"}, #include "specs.h"