Is Arpack really slow on Windows?

The same example is run with 1.7, once in Windows 10, and once in WSL2 (on the same machine, of course). The curious thing is the simulation takes roughly the same time, BUT WSL2 is worse running julia code (about a factor of 2), whereas Windows is worse running the Arpack library code (83 vs 106 seconds, ~25%).

Windows 10:

               _                                                                                                           
   _       _ _(_)_     |  Documentation: https://docs.julialang.org                                                        
  (_)     | (_) (_)    |                                                                                                   
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.                                                            
  | | | | | | |/ _` |  |                                                                                                   
  | | |_| | | | (_| |  |  Version 1.7.0 (2021-11-30)                                                                       
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release                                                          
|__/                   |                                                                                                   
                                                                                                                           
julia> 1
1                                                                                                                          
                                                                                                                           
julia> using Pkg; Pkg.activate("."); Pkg.instantiate(); 
  Activating project at `C:\Users\USERX\Documents\00WIP\FinEtoolsFlexStructures.jl`                                        
┌ Warning: The active manifest file is an older format with no julia version entry. Dependencies may have been resolved with a different julia version.                                                                                               
└ @ C:\Users\USERX\Documents\00WIP\FinEtoolsFlexStructures.jl\Manifest.toml:0                                              

julia> using Pkg; Pkg.activate("./examples"); Pkg.instantiate();                                                           
  Activating project at `C:\Users\USERX\Documents\00WIP\FinEtoolsFlexStructures.jl\examples`                               

julia> include("C:\\Users\USERX\\Documents\\00WIP\\FinEtoolsFlexStructures.jl\\examples\\shells\\dynamics\\barrel_w_stiffeners_examples.jl")                                                                                                         
[ Info: All examples may be executed with                                                                                  
using .Main.barrel_w_stiffeners_examples; Main.barrel_w_stiffeners_examples.allrun()                                       
                                                                                                                           
julia> using .Main.barrel_w_stiffeners_examples; Main.barrel_w_stiffeners_examples.allrun()                                
                                                                                                                           
#####################################################                                                                      
# test_convergence                                                                                                         
[ Info: Barrel With Stiffeners, free vibration, formulation=FinEtoolsFlexStructures.FEMMShellT3FFModule                    
[ Info: Mesh: barrel_w_stiffeners-s3.h5mesh                                                                                
[ Info: Number of nodes and elements: 113080, 226144                                                                       
[ Info: Associate Geometry time 1.1434872 [sec]                                                                            
[ Info: Stiffness assembly time 5.6152325 [sec]                                                                            
[ Info: Mass assembly time 3.0288511 [sec]                                                                                 
convinfo = 40                                                                                                              
[ Info: Frequencies: [231.3918, 231.4014, 238.1574, 238.1607, 250.0891, 250.0906, 252.1793, 252.1847, 260.0195]            
[ Info: Time 106.9154142 [sec]                                                                                             
131.399180 seconds (72.13 M allocations: 25.870 GiB, 2.56% gc time, 6.91% compilation time)                                
true                                                                                                                       
                                                                                                                           

And WSL2:

pkrysl@Hedwig:/mnt/c/Users/USERX/Documents/00WIP/FinEtoolsFlexStructures.jl$ ~/julia-1.7.0/bin/julia
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.7.0 (2021-11-30)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

julia> using Pkg; Pkg.activate("./Examples"); Pkg.instantiate(); using Revise
  Activating project at `/mnt/c/Users/USERX/Documents/00WIP/FinEtoolsFlexStructures.jl/Examples`
┌ Warning: The active manifest file is an older format with no julia version entry. Dependencies may have been resolved with a different julia version.
└ @ /mnt/c/Users/USERX/Documents/00WIP/FinEtoolsFlexStructures.jl/Examples/Manifest.toml:0
Precompiling project...
  2 dependencies successfully precompiled in 17 seconds (114 already precompiled)

julia> include("examples/shells/dynamics/barrel_w_stiffeners_examples.jl")
[ Info: All examples may be executed with
using .Main.barrel_w_stiffeners_examples; Main.barrel_w_stiffeners_examples.allrun()

julia> using .Main.barrel_w_stiffeners_examples; Main.barrel_w_stiffeners_examples.allrun()
#####################################################
# test_convergence
[ Info: Barrel With Stiffeners, free vibration, formulation=FinEtoolsFlexStructures.FEMMShellT3FFModule
[ Info: Mesh: barrel_w_stiffeners-s3.h5mesh
[ Info: Number of nodes and elements: 113080, 226144
[ Info: Associate Geometry time 2.0284551 [sec]
[ Info: Stiffness assembly time 12.6835714 [sec]
[ Info: Mass assembly time 8.1424431 [sec]
convinfo = 40
[ Info: Frequencies: [231.3918, 231.4014, 238.1574, 238.1607, 250.0891, 250.0906, 252.1793, 252.1847, 260.0195]
[ Info: Time 83.2455934 [sec]
132.453933 seconds (72.25 M allocations: 25.880 GiB, 3.58% gc time, 11.17% compilation time)
true

Is this something that someone can confirm? And perhaps have an explanation?