wine, notepad, too many "fixme"

Questions about Wine on Linux
Locked
gsalazar
Level 1
Level 1
Posts: 9
Joined: Thu Sep 26, 2024 4:39 pm

wine, notepad, too many "fixme"

Post by gsalazar »

My working environment is as follows:
- I no longer have my own Linux box, none of us do; we all just connect to Nice DCV nodes, up to about 12 users per node.
- The native OS in such DCV nodes is currently Rocky 9.4

Now, I have the need for Wine but found that there is no official support for Rocky 9. So, I put together a container with openSUSE/leap in it and installed the Wine package…easy enough.

The first test was to run notepad and, while it did come up, I do get hundreds of “fixme” lines, as if notepad and/or Wine do not know what to do with so many CPUS:

Code: Select all

Apptainer> notepad 
0024:fixme:ntdll:create_logical_proc_info Improve CPU info reporting: system supports 192 logical cores, but only 32 supported!
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 33
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 34
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 35
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 36
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 37
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 38
 .
 .
 .
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 190
0024:fixme:ntdll:create_logical_proc_info skipping logical processor 191
002c:fixme:ntdll:create_logical_proc_info Improve CPU info reporting: system supports 192 logical cores, but only 64 supported!
002c:fixme:ntdll:create_logical_proc_info skipping logical processor 65
002c:fixme:ntdll:create_logical_proc_info skipping logical processor 66
 .
 .
 .
002c:fixme:ntdll:create_logical_proc_info skipping logical processor 190
002c:fixme:ntdll:create_logical_proc_info skipping logical processor 191
002c:fixme:winediag:loader_init wine-staging 9.0 is a testing version containing experimental patches.
002c:fixme:winediag:loader_init Please mention your exact version when filing bug reports on winehq.org.
0034:fixme:ntdll:create_logical_proc_info Improve CPU info reporting: system supports 192 logical cores, but only 64 supported!
0034:fixme:ntdll:create_logical_proc_info skipping logical processor 65
0034:fixme:ntdll:create_logical_proc_info skipping logical processor 66
 .
 .
 .
Any idea what all this is about?
Can it be fixed?
desessarts
Level 4
Level 4
Posts: 202
Joined: Wed Oct 04, 2023 7:57 am

Re: wine, notepad, too many "fixme"

Post by desessarts »

fixme are usually not a problem

if you do

Code: Select all

WINEDEBUG=fixme-all wine ...
you will not even see them
gsalazar
Level 1
Level 1
Posts: 9
Joined: Thu Sep 26, 2024 4:39 pm

Re: wine, notepad, too many "fixme"

Post by gsalazar »

Yeap, that did it.
Thanks.
Locked