author | Camm Maguire <camm@debian.org> | 2002年02月01日 20:38:25 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2002年02月01日 20:38:25 +0000 |
commit | 32e917ffd766cda6e28024c89764d72f4d8ba4e2 (patch) | |
tree | 72cd4d000e8907a86f56b43272a24feb6c26104d | |
parent | 5ead1052bf5398a4c2ae14fdb4d7dbcd0d95f7c8 (diff) | |
download | gcl-unlabeled-1.2.2.tar.gz |
-rwxr-xr-x | gcl/unixport/rsym_elf.c | 9 |
diff --git a/gcl/unixport/rsym_elf.c b/gcl/unixport/rsym_elf.c index d5962ee83..de86a2d37 100755 --- a/gcl/unixport/rsym_elf.c +++ b/gcl/unixport/rsym_elf.c @@ -231,9 +231,12 @@ char *out; if (name && tmp && tmp[1]=='@' - && tmp[2]=='G' - && tmp[3]=='L' - && tmp[4]=='I') + /* also do translation for similar libc, like solaris, where symbol is */ + /* e.g. setjmp@@SYSVABI_1.3 */ +/* && tmp[2]=='G' */ +/* && tmp[3]=='L' */ +/* && tmp[4]=='I' */ + ) *tmp=0; } |