Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 245)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#174 fixed DosQueryAppType throws errors when os2safe.h is included (new with version 0.6.3) bird abwillis
Description

Building Mozilla with highmem enabled results in: weakld: error: Unresolved symbol (UNDEF) '_SAFE_PCSZ_USE'. weakld: info: The symbol is referenced by:

E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj)

weakld: error: Unresolved symbol (UNDEF) '_SAFE_DOS_FAILURE'. weakld: info: The symbol is referenced by:

E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj)

weakld: error: Unresolved symbol (UNDEF) '_SAFE_PCSZ'. weakld: info: The symbol is referenced by:

E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj)

weakld: error: Unresolved symbol (UNDEF) '_SAFE_PCSZ_DONE'. weakld: info: The symbol is referenced by:

E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj)

Ignoring unresolved externals reported from weak prelinker.

E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj) : error LNK2029: "_SAFE_PCSZ_USE" : unresolved external E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj) : error LNK2029: "_SAFE_PCSZ_DONE" : unresolved external E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj) : error LNK2029: "_SAFE_DOS_FAILURE" : unresolved external E:\compilers\gcc335\lib\libos2.lib(SafeDosQueryAppType?.obj) : error LNK2029: "_SAFE_PCSZ" : unresolved external

mozilla\nsprpub\pr\src\md\os2\os2misc.c includes os2safe.h which results in the above error.

#241 fixed libc: build failure with newer gcc/binutils bird abwillis
Description

With newer gcc/binutils fnstsw changes from using %ax to %eax: src/msun/i387/fenv.c

int
_STD(feupdateenv)(const fenv_t *envp)
{
-	int mxcsr, status;
+	int mxcsr;
+        uint16_t status;

	__fnstsw(&status);
	if (__HAS_SSE())
		__stmxcsr(&mxcsr);
	else
		mxcsr = 0;
	fesetenv(envp);
	feraiseexcept((mxcsr | status) & FE_ALL_EXCEPT);
	return (0);
}

The code is incorrectly using int (32-bit) for a 16-bit type (FSW).

#17 invalid LIBC PANIC!! bird abwillis1@…
Description

Building coreutils fails under gcc 3.3.5ga2, worked in RC1. chmod +x groups-t chmod: fts_read failed: Function not implemented

LIBC PANIC!! _um_free_maybe_lock: Tried to free block twice - block=20035180 lock=0x1 pid=0x17b6 ppid=0x1351 tid=0x0001 slot=0x00c5 pri=0x0200 mc=0x0000 E:\CVS\WORK\COREUTILS-5.2.1\SRC\CHMOD.EXE Process have been dumped

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.