search for: libobjdir

Displaying 5 results from an estimated 5 matches for "libobjdir".

Did you mean: gitobjdir
2009 Apr 17
1
Missing getopt_long in Solaris 8 Sparc
...ing getopt1.c when getopt isn't available.c. Can you > check why it doesn't? In any case, that's only required for the Ogg > tools, not for the library. config.log says ac_cv_func_getopt_long=no ac_cv_header_getopt_h=no ac_cv_lib_gnugetopt_getopt_long=no LIBOBJS=' ${LIBOBJDIR}getopt$U.o ${LIBOBJDIR}getopt1$U.o' LIBS='-lm ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LN_S='ln -s' LTLIBOBJS=' ${LIBOBJDIR}getopt$U.lo ${LIBOBJDIR}getopt1$U.lo' However, the files in src/ are not compiled: build8s% ls -l src/ total 269 -rw-r--r-- 1 dam...
2009 Apr 14
2
Missing getopt_long in Solaris 8 Sparc
Hi, I have problems compiling speex 1.2rc1: > /opt/studio/SOS11/SUNWspro/bin/cc -DHAVE_CONFIG_H -I. -I. - > I.. -I../include -I../include -I.. -I/opt/csw/include -I/opt/csw/ > include -xO3 -xarch=v8 -I/opt/csw/include -c skeleton.c > /bin/bash ../libtool --mode=link /opt/studio/SOS11/SUNWspro/bin/cc - > xO3 -xarch=v8 -I/opt/csw/include -xarch=v8 -L/opt/csw/lib -o
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...index 59649562..0953e601 100644 > --- a/Makefile.in > +++ b/Makefile.in > @@ -12,6 +12,9 @@ LIBS=@LIBS@ > CC=@CC@ > CFLAGS=@CFLAGS@ > CPPFLAGS=@CPPFLAGS@ > +CXX=@CXX@ > +CXXFLAGS=@CXXFLAGS@ > +CXXUSED=@CXXUSED@ > EXEEXT=@EXEEXT@ > LDFLAGS=@LDFLAGS@ > LIBOBJDIR=lib/ > @@ -27,7 +30,11 @@ SHELL=/bin/sh > VERSION=@RSYNC_VERSION@ > > .SUFFIXES: > -.SUFFIXES: .c .o > +ifeq ($(CXXUSED),yes) > + .SUFFIXES: .c .cpp .o > +else > + .SUFFIXES: .c .o > +endif > > GENFILES=configure.sh aclocal.m4 config.h.in proto.h prot...
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...e 100644 checksum_sse2.cpp diff --git a/Makefile.in b/Makefile.in index 59649562..0953e601 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,6 +12,9 @@ LIBS=@LIBS@ CC=@CC@ CFLAGS=@CFLAGS@ CPPFLAGS=@CPPFLAGS@ +CXX=@CXX@ +CXXFLAGS=@CXXFLAGS@ +CXXUSED=@CXXUSED@ EXEEXT=@EXEEXT@ LDFLAGS=@LDFLAGS@ LIBOBJDIR=lib/ @@ -27,7 +30,11 @@ SHELL=/bin/sh VERSION=@RSYNC_VERSION@ .SUFFIXES: -.SUFFIXES: .c .o +ifeq ($(CXXUSED),yes) + .SUFFIXES: .c .cpp .o +else + .SUFFIXES: .c .o +endif GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsync-ssl.1 rsyncd.conf.5 HEADERS=byteord...
2020 May 18
3
[PATCH] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
What do you base this on? Per https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html : "For the x86-32 compiler, you must use -march=cpu-type, -msse or -msse2 switches to enable SSE extensions and make this option effective. For the x86-64 compiler, these extensions are enabled by default." That reads to me like we're fine for SSE2. As stated in my comments, SSSE3 support must be