Hi Martin, Thanks for your patch. It fixed the problem.
When running the compiled Julia, I now get an error in its initialization when it tries to open a named pipe for stderr - fd 2 (it uses libuv). Also , it immediately finishes after start & messes up stdout in the Cygwin shell (no more stdin echo to stdout)... If I start it via a native Windows cmd shell, it (Julia.exe) seems to behave normally with non-messed up stdout... As soon as stdin/out/err is involved, it seems to behave erratically. I will check this further & report back here when I found a more specific reason / error description. Thanks :) - Sven -----Original Message----- From: Martin Storsjö [mailto:[email protected]] Sent: 25 November 2017 21:13 To: [email protected] Subject: [Mingw-w64-public] [PATCH] ucrtbase: Don't include a import library alias "tzset" This was missed in 483ddaaf1b09590756ff8c59bc2db7501d7364f9. Signed-off-by: Martin Storsjö <[email protected]> --- mingw-w64-crt/def-include/msvcrt-common.def.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mingw-w64-crt/def-include/msvcrt-common.def.in b/mingw-w64-crt/def-include/msvcrt-common.def.in index 9fb8dc2..c0418fc 100644 --- a/mingw-w64-crt/def-include/msvcrt-common.def.in +++ b/mingw-w64-crt/def-include/msvcrt-common.def.in @@ -92,7 +92,9 @@ ADD_UNDERSCORE(strupr) ADD_UNDERSCORE(swab) ADD_UNDERSCORE(tell) ADD_UNDERSCORE(tempnam) +#ifndef UCRTBASE ADD_UNDERSCORE(tzset) +#endif ADD_UNDERSCORE(umask) ADD_UNDERSCORE(ungetch) ADD_UNDERSCORE(unlink) -- 2.7.4 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
