1. eui slow under WSL+Jammy
- Posted by axtens_bruce in March
- 668 views
bugmagnet@LAPTOP-H6HBEGA9:~$ cat hello.e puts(1,"Hello World\n") bugmagnet@LAPTOP-H6HBEGA9:~$ time eui Euphoria Interpreter v4.1.0 development 64-bit Linux, Using System Memory Revision Date: 2015-02-02 14:18:53, Id: 5861:57179171dbed ERROR: Must specify the file to be interpreted on the command line real 0m20.982s user 0m0.075s sys 0m2.779s bugmagnet@LAPTOP-H6HBEGA9:~$ time eui hello.e Hello World real 0m16.135s user 0m0.030s sys 0m2.228s bugmagnet@LAPTOP-H6HBEGA9:~$ time eui hello.e Hello World real 0m17.443s user 0m0.040s sys 0m2.345sThis is Windows Services for Linux running Ubuntu Jammy. Running eui invariably takes over 15 seconds to do anything. Has anyone seen this and is there a known fix?
-Bruce
2. Re: eui slow under WSL+Jammy
- Posted by ghaberek (admin) in March
- 647 views
axtens_bruce said...
This is Windows Services for Linux running Ubuntu Jammy. Running eui invariably takes over 15 seconds to do anything. Has anyone seen this and is there a known fix?
Make sure your PATH inside WSL doesn't include your Windows PATH variables, which I believe is the default.
Add appendWindowsPath=false to your /etc/wsl.conf inside WSL (repeat for each WSL instance if you have several).
[interop] appendWindowsPath=false
Reference: https://learn.microsoft.com/en-us/windows/wsl/wsl-config#interop-settings
-Greg
3. Re: eui slow under WSL+Jammy
- Posted by axtens_bruce in March
- 630 views
Thank you very much! Now working much faster.
-Bruce