I just installed MinGW + MSYS in Windows XP using graphical installer. Everything seems fine.

However, when I try to build a C++ application using ./configure, make, make install, it shows error message. The following 2 checkings failed:

AC_CHECK_LIB(m, memcpy, [], [AC_MSG_ERROR([error msg])])

AC_CHECK_FUNC(memcpy, [],[AC_MSG_ERROR([error msg])])

Why my MinGW couldn't find memcpy and its library? Can anyone give me suggestion how to fix this error? Thank you.

link|improve this question
2  
What are the compile errors you're getting? – Victor T. Nov 28 '11 at 5:35
1  
Also, a snippet from the config.log file around the error would be helpful (search for "memcpy" in the config.log file). – richq Nov 28 '11 at 7:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.