search for: ltcompile

Displaying 7 results from an estimated 7 matches for "ltcompile".

2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...b > -Burg := $(BURG) -I $(BUILD_SRC_DIR) > -TableGen := $(TBLGEN) -I $(BUILD_SRC_DIR) > -Archive := $(AR) $(ARFLAGS) > +Compile.C = $(CC) $(CPPFLAGS) $(CompileCommonOpts) -c $(CFLAGS) > +Compile.CXX = $(CXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c > +LTCompile.C = $(LIBTOOL) --mode=compile $(Compile.C) > +LTCompile.CXX = $(LIBTOOL) --tag=CXX --mode=compile $(Compile.CXX) > +BCCompile.CXX = $(LLVMGXX) $(CPPFLAGS) $(CompileCommonOpts) $(CXXFLAGS) -c > +BCCompile.C = $(LLVMGCC) $(CPPFLAGS) $(CompileCommonOpts) $(CFLAGS) -c > +Link =...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid, I think it is the first time it is run that the errors occcur !? Not sure but that would seem logical. Aaron
2005 Oct 18
0
At last : Speex without floating point
...des that do not use Innovation Quantitization. Approximately a quarter of the modes remain. See www.rational.co.za/speexNoFloat.csv The patch and the precomputed files are at www.rational.co.za/speex-1.1.10-NoFloat.tar.gz How do I know it does not use floating point ? I add -msoft-float to the LTCOMPILE variable. This will result in link errors whenever floating point operations are performed during runtime. (The remaining floating point numbers are converted to integers at compile time.) There seems to be a bug in GCC, so this trick only works when no optimization is used. I'm not on the mai...
2005 Jan 07
1
[LLVMdev] Shared library building problems on Darwin
...sn't complain, but fails to actually load it. (Take my word that -pmfbuild would work if not for this, it does later.) So I tried the same hack I found earlier: --- Makefile.rules 3 Jan 2005 17:42:57 -0000 1.287 +++ Makefile.rules 7 Jan 2005 02:29:22 -0000 @@ -326,7 +326,7 @@ LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX) BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \ $(CXX.Flags) -c -Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \ +Link = $(LIBTOOL) $(LibTool.Flags) --mode...
2005 Jan 11
2
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
...is, it does later.) > > > > > > So I tried the same hack I found earlier: > > > > > > --- Makefile.rules 3 Jan 2005 17:42:57 -0000 1.287 > > > +++ Makefile.rules 7 Jan 2005 02:29:22 -0000 > > > @@ -326,7 +326,7 @@ > > > LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX) > > > BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \ > > > $(CXX.Flags) -c > > > -Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \ > &...
2005 Jan 11
0
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
...> > > > > So I tried the same hack I found earlier: > > > > > > > > --- Makefile.rules 3 Jan 2005 17:42:57 -0000 1.287 > > > > +++ Makefile.rules 7 Jan 2005 02:29:22 -0000 > > > > @@ -326,7 +326,7 @@ > > > > LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX) > > > > BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \ > > > > $(CXX.Flags) -c > > > > -Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP....
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...urlauth_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS)...