I'm working on a new mingw32 build of a project I help develop and I'm running into an issue building the installer because it can't find libgcc:
warning: target 'libgcc_s_sjlj-1.dll' is not absolute... warning: target 'libgcc_s_sjlj-1.dll' does not exist...
Which is present $ locate libgcc_s_sjlj-1.dll /usr/i686-w64-mingw32/sys-root/mingw/bin/libgcc_s_sjlj-1.dll
After adding some debug messaging to the cmake configuration I see:
CMAKE_SYSTEM_LIBRARY_PATH: /usr/i686-w64-mingw32/sys-root/mingw/bin/usr/bin/bin
I'm not sure exactly where it's set, I'm assuming it's parsed from CMAKE_FIND_ROOT_PATH or the like but it's not getting setup as a list of directories but rather concatenated together.
Ideas?
Thanks, Richard
Never mind.... The ";"'s are suppressed in the output, back to the drawing board...
Thanks, Richard
What phase of the build are you getting this message in?
--Greg
On Mon, Jan 16, 2017 at 9:03 AM, Richard Shaw hobbes1069@gmail.com wrote:
Never mind.... The ";"'s are suppressed in the output, back to the drawing board...
Thanks, Richard
mingw mailing list -- mingw@lists.fedoraproject.org To unsubscribe send an email to mingw-leave@lists.fedoraproject.org
On Mon, Jan 16, 2017 at 8:04 AM, Greg Hellings greg.hellings@gmail.com wrote:
What phase of the build are you getting this message in?
make package. I'm using the GetPrerequisites module to pull in the needed DLL's but it's not finding them anyway.
I've even tried using the <path> part of the GET_PREREQUISITES function but then it chokes on finding KERNEL32.DLL even know I have the exclude_system flag set to true...
Thanks, Richard