Re: Problems with 4.1
- Posted by SDPringle Jul 23, 2018
- 2132 views
I have noticed this problem as well. I noticed this kind of problem as well but on Linux on 4.0.6.
include std/dll.e -- Euphoria assert type truth_type(object x) return not equal(x,0) end type truth_type truth -- Returns zero on my machine. Weird eh? constant libc = open_dll("libc.so") -- Fails with a type error if libc is zero. truth = libc
Run this to quickly see that libc.so is not found on our machines. I tried it on both 4.1 and 4.0 (development) and neither of them find that file. On Linux there is always a library with libc.so. Over on Windows, you should always be able to open system.dll.

