Richard Shaw <[email protected]> writes: > I'm working on documenting how to build a project natively in windows, > which first means figuring out the quirks myself and I ran into an issue > with g++ not being able to find headers with unix style paths > "/usr/local/include".
[snip] > If I change the /usr/local to c;/Tools/msys/local/include/wx-3.0 (and the > same for the other) then compilation completes without error. > > Am I missing something obvious here? Isn't the whole point of msys is so > that you can use unix style paths? The compiler does not depend on MSYS, which acts as a POSIX compatibility layer. MinGW(-w64) compiler, linker, etc don't know about those fictional paths that MSYS creates. The point of MSYS is to provide an environment for running sotfware that hasn't been ported to Windows and requires a POSIX environment, such as configure scripts. ------------------------------------------------------------------------------ Infragistics Professional Build stunning WinForms apps today! Reboot your WinForms applications with our WinForms controls. Build a bridge from your legacy apps to the future. http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
