Displaying 18 results from an estimated 18 matches for "config_h".
2008 Apr 21
3
[LLVMdev] does llvm-gcc (4.2) build?
...anybody confirm that llvm-gcc is broken?
After following all the instructions, make gets stuck while:
ggreif$ gmake
gmake \
CFLAGS="-g -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -fno-common " \
CONFIG_H="config.h auto-host.h /Users/ggreif/llvm-gcc/gcc/../include/ansidecl.h" \
MAKEOVERRIDES= \
-f libgcc.mk all
^Cgmake: *** [stmp-multilib] Interrupt
When running this manually I get some output that might ring a bell:
ggreif$ gmake \
> CFLAGS="-g...
2008 Apr 21
0
[LLVMdev] does llvm-gcc (4.2) build?
...-Tanya
>
> After following all the instructions, make gets stuck while:
>
> ggreif$ gmake
> gmake \
> CFLAGS="-g -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -fno-common " \
> CONFIG_H="config.h auto-host.h /Users/ggreif/llvm-gcc/gcc/../include/ansidecl.h" \
> MAKEOVERRIDES= \
> -f libgcc.mk all
> ^Cgmake: *** [stmp-multilib] Interrupt
>
>
>
> When running this manually I get some output that might ring a bell:
>
> ggreif$ g...
2008 Jul 10
4
[LLVMdev] Including svn version number in --version output
...on.h $(DATESTAMP) $(BASEVER) $(DEVPHASE)
+.PHONY: version.o
+version.o:
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
-DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
+ -DSVNVER=$(SVNVER_s) \
-DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
(TM_H) \
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080709/d8787d5a/attachment.html>
2012 Nov 14
2
[LLVMdev] Linking Clang with an optional external library
...d expect the user to pass -DWITH_STP_PREFIX= if they would like to use this feature?
#cmakedefine STP_C_INTERFACE ${WITH_STP_PREFIX}/include/stp/c_interface.h
One potential issue I noticed in writing this patch is that LLVM's config.h and Clang's config.h are both #include-guarded by the CONFIG_H macro, and consequently both cannot be included from the same source file. Perhaps these should be changed to LLVM_CONFIG_H and CLANG_CONFIG_H, respectively?
Thanks,
Ryan
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...SE)
> +.PHONY: version.o
> +version.o:
> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
> + -DSVNVER=$(SVNVER_s) \
> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>
> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
>
>
>
2008 Apr 21
1
[LLVMdev] does llvm-gcc (4.2) build?
...After following all the instructions, make gets stuck while:
>
> > ggreif$ gmake
> > gmake \
> > CFLAGS="-g -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -fno-common " \
> > CONFIG_H="config.h auto-host.h /Users/ggreif/llvm-gcc/gcc/../include/ansidecl.h" \
> > MAKEOVERRIDES= \
> > -f libgcc.mk all
> > ^Cgmake: *** [stmp-multilib] Interrupt
>
> > When running this manually I get some output that might ring a bell:
>
>...
2006 Dec 23
1
[LLVMdev] in Cygwin problems
...be done for `all'.
make[1]: Leaving directory `/tmp/llvm3/llvm/build/intl'
make[1]: Entering directory `/tmp/llvm3/llvm/build/gcc'
make \
CFLAGS="-O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-l
ng -fno-common " \
CONFIG_H="tconfig.h ../../src/gcc/../include/ansidecl.h ../../src/gcc/config/i386/xm-cygwin.h" TM_H
"tm.h ../../src/gcc/config/i386/i386.h ../../src/gcc/config/i386/unix.h ../../src/gcc/config/i386/bsd.h
./../src/gcc/config/i386/gas.h ../../src/gcc/config/dbxcoff.h ../../src/gcc/config/i...
2013 Sep 18
5
[PATCH] qemu-traditional: do not strip binaries during make install
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Acked-by: Matt Wilson <msw@amazon.com>
---
Makefile | 2 +-
Makefile.target | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 37c7066..594f0ef 100644
--- a/Makefile
+++ b/Makefile
@@ -243,7 +243,7 @@ endif
install: all $(if $(BUILD_DOCS),install-doc)
mkdir -p
2008 Jul 10
4
[LLVMdev] Including svn version number in --version output
....o
>> +version.o:
>> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
>> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
>> + -DSVNVER=$(SVNVER_s) \
>> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>>
>> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
>> (TM_H) \
>>
>>
>>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-
Devang
2006 Jul 07
1
[LLVMdev] Problem Compiling llvm-gcc4 r12 and r13
A clean build of revisions 12 or 13 of llvm-gcc4 produces:
make[1]: *** No rule to make target `llvm-backend.c', needed by `llvm-backend.o'. Stop.
While the gcc/Makefile.in has:
llvm-backend.o : llvm-backend.cpp $(ALL_HEADERS) #line 2440
it also has:
# APPLE LOCAL begin LLVM #line 1018
ifneq ($(LLVMOBJDIR),)
OBJS-common += llvm-backend.o llvm-convert.o
2011 Jul 23
1
Bug#635166: Please enable audio support in xen-qemu
...package, I enabled audio support, but since this
is packaged in 4.1, audio support is gone.
What I did for squeeze, is:
--- a/configure 2010-03-23 17:08:39.000000000 +0800
+++ b/configure 2010-03-23 17:09:30.000000000 +0800
@@ -1382,6 +1382,9 @@
echo "#define CONFIG_VDE 1" >> $config_h
echo "VDE_LIBS=-lvdeplug" >> $config_mak
fi
+if ! test -z "$audio_card_list"; then
+ echo "CONFIG_AUDIO=yes" >> $config_mak
+fi
Then:
$(STAMPS_DIR)/setup: $(STAMPS_DIR)/source
cd $(BUILD_DIR); ./xen-setup \
--audio-drv-list=&q...
2007 Apr 01
3
[LLVMdev] trouble compiling llvm-gcc4 1.9
...9/include
-I/opt/local/lib/llvm/include -mlongcall \
-c ../../llvm-gcc4-1.9.source/gcc/config/darwin-crt2.c -o crt2.o
make \
CFLAGS="-g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
-Wold-style-definition " \
CONFIG_H="config.h auto-host.h
../../llvm-gcc4-1.9.source/gcc/../include/ansidecl.h" \
MAKEOVERRIDES= \
-f libgcc.mk all
make
GCC_FOR_TARGET="/opt/local/var/db/dports/build/_unencrypted_erickt_Projects_macports-trunk_dports_lang_llvm-gcc4/work/build/gcc/xgcc
-B/opt/local/var/db/dports...
2010 Aug 23
3
[LLVMdev] Problem cross-compiling llvm-gcc for AIX-PowerPC
...powerpc-ibm-aix5.1.0.0, I get the following error:
make \
CFLAGS="-g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros
-Wno-overlength-strings -Wold-style-definition
-Wmissing-format-attribute " \
CONFIG_H="config.h auto-host.h
../../llvm-gcc-4.2-2.7.source/gcc/../include/ansidecl.h" \
MAKEOVERRIDES= \
-f libgcc.mk all
make[3]: Entering directory `/localhome/simmon12/aix-cross/obj/gcc'
/localhome/simmon12/aix-cross/obj/./gcc/xgcc
-B/localhome/simmon12/aix-cross/...
2007 Oct 04
3
Re: [kvm-devel] [ kvm-Bugs-1807620 ] KVM's --disable-gcc-check doesn't work
Gregory Haskins wrote:
> On Thu, 2007-10-04 at 19:27 +0200, Farkas Levente wrote:
>
>> ok but now as qemu code was imported into kvm, then it's probably would
>> be better to witch gcc-4.x?
>
> Sure. Are you volunteering? ;) I'm sure both upstream QEMU developers,
> KVM developers, and the community using either would be most
> appreciative. I know I
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...>>> $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
>>> -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
>>> + -DSVNVER=$(SVNVER_s) \
>>> -DDEVPHASE=$(DEVPHASE_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
>>>
>>> gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $
>>> (TM_H) \
>>>
>>>
>>>
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/l...
2004 Jun 28
1
[LLVMdev] xgcc: installation problem, cannot exec `gccas': No such file or directory
...for `all'.
gmake[1]: Leaving directory `/usr/local/src/cfrontend/build/intl'
gmake[1]: Entering directory `/usr/local/src/cfrontend/build/gcc'
gmake \
CFLAGS="-g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -fno-common " \
CONFIG_H="tconfig.h ../../src/gcc/../include/ansidecl.h" TM_H="tm.h
../../src/gcc/config/i386/i386.h ../../src/gcc/config/i386/unix.h
../../src/gcc/config/i386/bsd.h ../../src/gcc/config/i386/gas.h
../../src/gcc/config/i386/i386-interix.h
../../src/gcc/config/i386/i386-interix3.h ../...
2006 Dec 22
0
[LLVMdev] in Cygwin problems
...vm/build/zlib'
> make[1]: Entering directory `/tmp/llvm3/llvm/build/gcc'
> rm -f jc1.exe
> gcc -O2 -DIN_GCC -DDEFAULT_TARGET_MACHINE=\"i686-pc-cygwin\" -W -Wall -Wwrite-strings -Wstrict-prototypes
> -Wmissing-prototypes -pedantic -Wno-long-long -fno-common -DHAVE_CONFIG_H -o jc1.exe \
> java/parse.o java/class.o java/decl.o java/expr.o java/constants.o java/lang.o java/typeck.o j
> ava/except.o java/verify.o java/zextract.o java/jcf-io.o java/win32-host.o java/jcf-parse.o java/mangle.o java
> /mangle_name.o java/builtins.o java/resource.o ja...
2006 Dec 22
5
[LLVMdev] in Cygwin problems
...ctory `/tmp/llvm3/llvm/build/zlib'
make[1]: Entering directory `/tmp/llvm3/llvm/build/gcc'
rm -f jc1.exe
gcc -O2 -DIN_GCC -DDEFAULT_TARGET_MACHINE=\"i686-pc-cygwin\" -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -pedantic -Wno-long-long -fno-common -DHAVE_CONFIG_H -o jc1.exe \
java/parse.o java/class.o java/decl.o java/expr.o java/constants.o java/lang.o java/typeck.o j
ava/except.o java/verify.o java/zextract.o java/jcf-io.o java/win32-host.o java/jcf-parse.o java/mangle.o java
/mangle_name.o java/builtins.o java/resource.o java/jcf-write.o...