search for: incintl

Displaying 3 results from an estimated 3 matches for "incintl".

Did you mean: in_intr
2006 May 07
0
[LLVMdev] Configuring for the cfrontend build on Mingw
...onexistent directory "../../llvm-gcc/gcc/" while: "../../llvm-gcc/gcc" is not "ignored". 3. One potential point of control is the INCLUDES variable found in cfrontent/gcc/Makefile.in: INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ -I$(srcdir)/../include @INCINTL@ 4. It is worth mentioning that there is a subtle interaction with (my particular version of) make. In some cases make should be replacing $(@D) with '.', but instead replaces it with '' (nothing). You end up with ... -I. -I -Isome/src/path -I/some/src/path/ ... then the -I -...
2006 Apr 23
2
[LLVMdev] Building CFE in Mingw
...t even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Report bugs to <bug-make at gnu.org>. 2) Some patching: Go to gcc\gcc directory, open Makefile.in file. Find lines: INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ -I$(srcdir)/../include @INCINTL@ Change them to: INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ -I$(srcdir)/../include @INCINTL@ -IPREFIX/include Note: use forward slashes for PREFIX, e.g. -If:/projects/mingw 2. Possible issues. 1) Problem: Complains about *.info files. Resolut...
2006 May 08
0
[LLVMdev] Configuring for the cfrontend build on Mingw
Hello, Greg. You wrote Sunday, May 7, 2006, 10:46:34 PM: GP> 3. One potential point of control is the INCLUDES variable found in GP> cfrontent/gcc/Makefile.in: GP> INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ GP> -I$(srcdir)/../include @INCINTL@ Just unpack mingw32's headers & libs (w32api && mingw-runtime) into prefix directory. And configure script should find them. GP> 4. It is worth mentioning that there is a subtle interaction with (my GP> particular version of) make. In some cases make should be replacing $(@D...