This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Segmentation fault with winmm library


Guy.Eschemann@Sennheiser.com wrote:

> compiled with the following command:
> 
> g++ main.cc /usr/lib/w32api/libwinmm.a -Wall -g -O0
> 
> I get a segmentation fault under gdb:

You should use "-lwinmm" and not "/usr/lib/w32api/libwinmm.a".  There's
no need to specify an absolute path to the import library, and doing so
makes your build infrastructure extremely unfriendly (e.g. for someone
trying to crosscompile your software.)  The compiler and linker both
know where to search for the w32api headers and libs.

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]