-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Executables very slow on Debian 12? #159
Comments
OTOH, the loop at: runs about 7x faster with nectar than node. |
Other test code at e.g.: https://github.com/drujensen/fib time node fib.js real 0m40.203s nectar fib.js -o fibnectar time ./fibnectar real 7m55.692s |
Hi, which compiler are you using ? |
gcc --version g++ --version |
it should not be so slow, quite strange |
Problem persists even after reinstalling a fresh Debian 12. Likely specific to the OS or a particular version of the OS or some packages? Any other OSes to try? OTOH, since Node seems to work flawlessly, then maybe it's just nectar? There's no difference when building with: node nectar fib.js -o fibnectarman |
I am testing the Fibonacci code. As an example I am finding the 41st number.
fibo.zip
node fibo.js returns pretty quickly, but ./fibo.out after
nectar fibo.js -o fibo.out
takes noticeably long to return.
This is entirely different what's supposed to happen based on the benchmarks in the repository.
Is something broken?
The text was updated successfully, but these errors were encountered: