Displaying 4 results from an estimated 4 matches for "__errno".
Did you mean:
_errno
2000 May 24
1
Problem w/cygwin1.1 (maybe)
...e dll
for my package is being created, I get the string of errors like:
[...]
gcc -mno-cygwin -mdll -Wl,--base-file,odesolve.b -s -o odesolve.dll odesolve.e
odesolve.a -L/R/rw1001/src/gnuwin32 -lg2c -lR
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(sfe.o)(.text+0x4e): undefined
reference to `__errno''
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(sfe.o)(.text+0xb9): undefined
reference to `__errno''
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(sfe.o)(.text+0xf3): undefined
reference to `__errno''
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(fmt.o)(.text+0x51): u...
2005 Jun 06
1
linker error in debug
...defined in
MSVCRTD.lib(cinitexe.obj)
GameClient error LNK2005: ___xc_a already defined in
MSVCRTD.lib(cinitexe.obj)
GameClient error LNK2005: ___xi_z already defined in
MSVCRTD.lib(cinitexe.obj)
GameClient error LNK2005: ___xi_a already defined in
MSVCRTD.lib(cinitexe.obj)
GameClient error LNK2005: __errno already defined in
MSVCRTD.lib(MSVCR71D.dll)
GameClient error LNK2005: __XcptFilter already defined
in MSVCRTD.lib(MSVCR71D.dll)
I ran dumpbin on vorbis_static_d and found out that it
contains the following:
_exit
_malloc
_calloc
_realloc
_free
Is it because of these that the linker detects an...
2013 Nov 23
2
[LLVMdev] [RFC] Identifying access to errno
...to do better by somehow leveraging TBAA for "int"?)
Here's a quick overview of how errno is implemented on different systems:
- Traditional POSIX (not thread safe):
extern int errno;
- DragonFly libc:
extern __thread int errno;
- Android libc:
extern volatile int* __errno(void);
#define errno (*__errno())
- Darwin libc:
int * __error(void);
#define errno (*__error())
- musl libc:
extern int *__errno_location(void);
#define errno (*__errno_location())
Does anyone see any problems with making stronger (type-based) assumptions re: errno (and, t...
2001 Jun 22
0
Half-Life: Selected Mode is not supported by your card
...red-stack-boundary=2 support... yes
checking whether .type must sit inside a .def directive... no
checking whether external symbols need an underscore prefix... no
checking whether assembler accepts .string... yes
checking whether we can build a GNU style ELF dll... yes
checking for reentrant libc: __errno_location... yes
checking for reentrant libc: __error... no
checking for reentrant libc: ___errno... no
checking for reentrant libc: __thr_errno... no
checking for reentrant libc: __errno... no
checking for reentrant X libraries... yes
checking for working alloca.h... yes
checking for alloca... yes...