Why does this happen ??
Alexandre Oliva
aoliva@redhat.com
Wed Nov 29 02:05:00 GMT 2000
On Nov 29, 2000, "Koundinya.K" <kk@ddeorg.soft.net> wrote:
> char *s="Hello World";
> When I compile this code with gcc, the resulting binary seg
> faults.
GCC places string literals in read-only sections, unless you compile
with -fwritable-strings. If you had written `static char s[]="..."',
it wouldn't have crashed, because then s's storage would be the
string's storage, and it would be placed in read&write memory.
--
Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist *Please* write to mailing lists, not to me
More information about the Gcc
mailing list