Hi,

I had encountered this problem while trying to build.
It seems that sed of MSYS2 doesn't handle binary CR (\015),
but it is able to work with '\r'.
Is this known issue ?

I'm using msys2-x86_64-20161025.exe,
and I'm trying to build this.
https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.5.1.tar.gz

Download tarball and run ./configure, I had this message.
======================================================================
checking command to parse /mingw64/bin/nm -B output from gcc object... failed
======================================================================

If I modified 'opt_cr' in configure script like this,
======================================================================
# Handle CRLF in mingw tool chain
opt_cr=
case $build_os in
mingw*)
  #opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
  opt_cr='\r\{0,1\}'
  ;;
esac
======================================================================

this problem is solved, like below.
======================================================================
checking command to parse /mingw64/bin/nm -B output from gcc object... ok
======================================================================

Best regards,

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Msys2-users mailing list
Msys2-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/msys2-users

Reply via email to