libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

$symcode on Tru64 UNIX


From: Albert Chin
Subject: $symcode on Tru64 UNIX
Date: Fri, 9 Aug 2002 14:05:57 -0500
User-agent: Mutt/1.2.5i

Libtool sets symcode='BCDEGRST' on Tru64 UNIX. Why isn't 'Q' part of
this string? From nm(1):
  Q   [Tru64 UNIX]  Read-only constants

$ cat >a.c <<_EOT_
const int foo = 1;
_EOT_
$ cc -c a.c
$ nm a.o | grep foo
foo                              | 0000000000000000 | Q | 0000000000000000

$ cat >a.c <<_EOT_
int foo = 1;
_EOT_
$ cc -c a.c
$ nm a.o | grep foo
foo                              | 0000000000000000 | G | 0000000000000000

-- 
albert chin (address@hidden)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]