From: notaz Date: Sun, 24 Mar 2013 23:03:27 +0000 (+0100) Subject: gas-preprocessor: support .bss X-Git-Tag: r20~116 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=22ccf738dcfd79768da590e88b6ee70d5e78a21e gas-preprocessor: support .bss same as .data on Mach-O it seems --- diff --git a/tools/gas-preprocessor.pl b/tools/gas-preprocessor.pl index 082f71bd..9787491e 100644 --- a/tools/gas-preprocessor.pl +++ b/tools/gas-preprocessor.pl @@ -121,6 +121,7 @@ while () { s/\.global/.globl/x; # also catch .section .rodata since the equivalent to .const_data is .section __DATA,__const s/(.*)\.rodata/.const_data/x; + s/\.bss/.data/x; s/\.int/.long/x; s/\.float/.single/x;