1
Programming / Re: Qt6 Application Testing
« on: June 05, 2023, 11:44:21 pm »
Completely untested.... https://smedley.id.au/tmp/tor-0.4.7.13-os2-20230606.zip
OS2World.com Forum is back !!!
Remember to visit OS2World at:
http://www.os2world.com
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
BTW, I just tried using your last 'Tor' with Dooble and it works great with the 'Socks5' proxy setting (using it now).
Thanks for the explanation - I now see what you mean about the exception handling being the bulk of the messages and they will be the same. Be interesting to hear what Steven has to say...
I'm no expert on traps, but the one you post sure looks a lot like the larger of the 2 I posted (0054_15.trp) when I put them side by side...
FAILED: src/25a6634@@dav1d@sha/msac.obj
C:/USR/BIN/nasm.exe -f aout -I U:/DEV/dav1d-1.2.0/src/ -I U:/DEV/dav1d-1.2.0/build/ -MQ src/25a6634@@dav1d@sha/msac.obj -MF src/25a6634@@dav1d@sha/msac.obj.ndep ../src/x86/msac.asm -o src/25a6634@@dav1d@sha/msac.obj
../src/x86/msac.asm:29: error: segment name `.rodata align=64' not recognized
U:/DEV/dav1d-1.2.0/src/ext/x86/x86inc.asm:95: ... from macro `SECTION_RODATA' defined here
../src/x86/msac.asm:69: error: segment name `.rodata align=64' not recognized
../src/x86/msac.asm:29: warning: OBJ format does not support alignment of 64: rounding up to 256 [-w+other]
U:/DEV/dav1d-1.2.0/src/ext/x86/x86inc.asm:93: ... from macro `SECTION_RODATA' defined here [-w+other]
../src/x86/msac.asm:69: warning: segment attributes specified on redeclaration of segment: ignoring [-w+other]
../src/x86/msac.asm:73: warning: segment attributes specified on redeclaration of segment: ignoring [-w+other]
U:/DEV/dav1d-1.2.0/src/ext/x86/x86inc.asm:102: ... from macro `SECTION_TEXT' defined here [-w+other]
%macro SECTION_RODATA 0-1 16
%ifidn __OUTPUT_FORMAT__,win32
SECTION .rdata align=%1
%elif WIN64
SECTION .rdata align=%1
%elifidn __OUTPUT_FORMAT__,obj
SEGMENT TEXT32 CLASS=CODE USE32 ALIGN=%1
%else
SECTION .rodata align=%1
%endif
%endmacro
x86inc.asm:102 is the obj code from:%macro SECTION_TEXT 0
%ifidn __OUTPUT_FORMAT__,obj
SEGMENT TEXT32 CLASS=CODE USE32
%else
SECTION .text
%endif
%endmacro
Thanks for the new Dooble and libdav1d! I tried the RPM version with the new Dooble, and everything works about the same as before - still get the system hangs and occasional silent exit, but all tests seem to work as before. I'll try the gcc12 version next...
Why did you comment out the check? I think you should add OS2 to the IFDEF clause preceding the check (I would assume that our close resembles the UNIX/LINUX close).