in reply to Time::HiRes sleep does not always work
Based on reading the documentation, Time::HiRes is willing to try multiple strategies for each function. Your problem would make perfect sense if the only emulation of gettimeofday() that your laptop can find is the built-in time() function. However perl2exe compiles the C API call that Perl is looking for into the executable, and so that executable finds the API call that you're missing a library for.
Without a lot of research I can't tell you how to make sure that a useful form of gettimeofday() is properly found on your laptop.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Time::HiRes sleep does not always work
by tone (Novice) on Aug 18, 2008 at 10:15 UTC | |
by tilly (Archbishop) on Aug 18, 2008 at 12:40 UTC | |
by tone (Novice) on Aug 19, 2008 at 12:34 UTC | |
by tilly (Archbishop) on Aug 19, 2008 at 21:39 UTC | |
by BrowserUk (Patriarch) on Aug 19, 2008 at 23:42 UTC | |
|