Issue information

Issue ID
#6236
Status
Unable to Fix
Severity
None
Started
Hercules Elf Bot
Jul 14, 2012 0:29
Last Post
Hercules Elf Bot
Sep 8, 2012 18:31
Confirmation
Yes (1)
No (0)

Hercules Elf Bot - Jul 14, 2012 0:29

Originally posted by [b]Jman[/b]
hi all.

[quote]


LD map-server_sql
In file included from ../common/mmo.h:550:0,
from :629:
In function âmake_listen_bindâ,
inlined from âdo_init_clifâ at clif.c:16860:22,
inlined from âdo_initâ at map.c:3958:14:
socket.c:496:2: warning: call to â__fdelt_warnâ declared with attribute warning: bit outside of fd_set selected [enabled by default]
In file included from map.h:1087:0,
from :362:
In function âmake_connectionâ,
inlined from âcheck_connect_char_serverâ at chrif.c:1529:28:
socket.c:548:2: warning: call to â__fdelt_warnâ declared with attribute warning: bit outside of fd_set selected [enabled by default]
In file included from utils.c:482:0,
from :466:
In function âdo_close.part.3â,
inlined from âdo_closeâ at socket.c:1154:6:
socket.c:1160:2: warning: call to â__fdelt_warnâ declared with attribute warning: bit outside of fd_set selected [enabled by default]
In file included from map.h:445:0,
from :407:
socket.c: In function âconnect_clientâ:
socket.c:443:2: warning: call to â__fdelt_warnâ declared with attribute warning: bit outside of fd_set selected [enabled by default]
In file included from map.h:422:0,
from :434:
In function âdo_socketsâ,
inlined from âmainâ at core.c:301:14:
socket.c:765:6: warning: call to â__fdelt_warnâ declared with attribute warning: bit outside of fd_set selected [enabled by default]
make[1]: Leaving directory `/home/jman/trunk/src/map'
building conf/import folder...
jman@ramuh:~/trunk$ uname -oa
Linux ramuh 3.2.0-23-generic-pae #36-Ubuntu SMP Tue Apr 10 22:19:09 UTC 2012 i686 i686 i386 GNU/Linux
jman@ramuh:~/trunk$
[/quote]

On Ubuntu Server 12.04 x64bit

Have fun.

This post has been edited by Jman on Jul 14, 2012 0:30

Hercules Elf Bot - Jul 14, 2012 21:17

Originally posted by [b]Mysterious[/b]
How did you get this? o_o!

Hercules Elf Bot - Jul 14, 2012 22:01

Originally posted by [b]Ind[/b]
jman is special, things break just as he gets nearby.

Hercules Elf Bot - Jul 15, 2012 4:15

Originally posted by [b]Mysterious[/b]
LOL! Is this in the latest SVN or something?

Hercules Elf Bot - Jul 15, 2012 18:58

Originally posted by [b]Lighta[/b]
It is, dunno if you have to but you can configure with --enable debug to have that display.

Hercules Elf Bot - Jul 16, 2012 18:40

Originally posted by [b]Ind[/b]
this seems to be a ubuntu-only problem (don't ask me why.)
[code]

extern long int __fdelt_chk (long int __d);
extern long int __fdelt_warn (long int __d)
__warnattr ("bit outside of fd_set selected");
#undef __FD_ELT
#define __FD_ELT(d) \
__extension__ \
({ long int __d = (d); \
(__builtin_constant_p (__d) \
? (0 <= __d && __d < __FD_SETSIZE \
? (__d / __NFDBITS) \
: __fdelt_warn (__d)) \
: __fdelt_chk (__d)); })
[/code]