TuononenP / llvm4eclipsecdt

LLVM toolchain support for Eclipse CDT. Now deprecated since it is build-in to Eclipse CDT via installation option. LLVM is a modular toolchain architecture that is used more and more in all kinds of computing platforms for it's certain benefits.
8 stars 0 forks source link

MinGW libraries are not included in the project #26

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Only MinGW include directory is included in the project. MinGW lib directories 
shall also be included in order to link C++ Standard Library. Includes can be 
found by navigating: Project -> Properties -> C/C++ General -> Paths and 
Symbols -> Includes tab.

Original issue reported on code.google.com by petri.tuononen@gmail.com on 21 Feb 2011 at 4:10

GoogleCodeExporter commented 9 years ago
In addition to ../mingw/include the following paths should be included:

For C projects:
../mingw/lib/gcc/mingw32/4.5.2/include
../mingw/lib/gcc/mingw32/4.5.2/include-fixed

For C++ projects:
../mingw/lib/gcc/mingw32/4.5.2/include/c++
../mingw/lib/gcc/mingw32/4.5.2/include/c++/mingw32
../mingw/lib/gcc/mingw32/4.5.2/include/c++/backward

Original comment by petri.tuononen@gmail.com on 23 Feb 2011 at 7:02

GoogleCodeExporter commented 9 years ago
Probably separate 
org.eclipse.cdt.make.core.ScannerConfigurationDiscoveryProfile shall be 
extended for llvm-gcc/llvm-g++ and mingw/cygwin configurations.

Original comment by petri.tuononen@gmail.com on 6 Mar 2011 at 12:48