search for: libssp

Displaying 20 results from an estimated 71 matches for "libssp".

Did you mean: libssl
2013 Mar 12
3
Can't cross-compile from git now.
...lding >> a Windows DLL. > > I can get around the undefined symbol errors by doing make LDFLAGS=-lssp > Perhaps Windows and FreeBSD will also work if linked against ssp.a / > ssp.dll. OF course this introduces another dependency. > Dave Dave, my toolchain automatically links libssp already, I am using vanilla sources. Erik, Why not also check if -lssp is required? If the toolchain has SSP disabled it should not be passing. Check onces without -lssp and another time with -lssp if it failed. Also, I don't think a trivial hello world will cause SSP code to be emitted, try...
2013 Mar 12
0
Can't cross-compile from git now.
JonY wrote: > Dave, my toolchain automatically links libssp already, I am using > vanilla sources. Are you doing a native Windows compile with MinGW or cross compiling from Linux? > Why not also check if -lssp is required? If the toolchain has SSP > disabled it should not be passing. Check onces without -lssp and another > time with -lssp if i...
2013 Sep 05
2
Re: [virt-tools-list] Is virsh supposed to work on Windows?
On Thu, Sep 05, 2013 at 06:50:43PM +0200, Christophe Fergeau wrote: > On Wed, Sep 04, 2013 at 04:41:40PM -0300, Fernando Lozano wrote: > > >What version of virsh is included in that msi? Maybe it's just a case > > >of a stale build, for something that has been fixed upstream? > > C:>virsh -V > > Virsh command line tool of libvirt 0.10.2 > > I've
2007 Dec 25
3
ProPolice/SSP in 7.0
...s the kernel patch and how many people out there are using it? 3. Does using the kernel and userland patch mean that I am eternally stuck to compiling from source if I want to keep SSP on all the time (gone are the days of freebsd-update luxury)? 4. What's the story with libssp? Jeremy reckons that it's a lost cause and causes more trouble than it's worth. Yet libssp seems to be the only thing that actually fully integrated in 7.0 Gunther
2014 Oct 09
3
configure: error: "Net-SNMP Libraries not found, required for SNMP drivers"
...o libquadmath.so.0 libgcj.so.15 libquadmath.so.0.0.0 libgcj.so.15.0.0 libreadline.so.6 libgcj.spec libruby18.so.1 libgdbm.so.4 libruby18.so.1.8.7 libgdbm.so.4.0.0 libssl.so.1.0.0 libgfortran.spec libssp_nonshared.a libgij.so libssp_nonshared.la libgij.so.15 libssp.a libgij.so.15.0.0 libssp.la libgmp.so.10 libssp.so libgmp.so.10.0.4 libssp.so.0 libgnugetopt.so.0 libssp.so.0.0.0 libgnugetopt.so.0.0.0 libstdc...
2013 Sep 06
4
Re: [virt-tools-list] Is virsh supposed to work on Windows?
...sh.exe complains about missing libvirt-lcx-0.dll and doesn't starts. You should be able to grab it from http://koji.fedoraproject.org/koji/buildinfo?buildID=460929 even though I don't think it's really useful to build that at all on mingw. > virt-viewer.exe complains about missing libssp-0.dll and doesn't > starts -- this also happens with the "current" binaries from > spice.org Not that surprising as the goal of this installer is to provide remote-viewer.exe, not virt-viewer.exe or virsh.exe. I'd tend to say we should not include them in the installer as t...
2013 Mar 08
6
Can't cross-compile from git now.
Hi I have a problem now cross-compiling FLAC from latest git. With Ubuntu 12.04 and g++-mingw-w64-i686 (4.6.3-1ubuntu5+5ubuntu1). I think that the problem might have been introduced on 5 Mar 2013 with commit 05609d5 (configure.ac : Add hardening compile options.) Gives errors like this:- /home/user/FLAC_build/flac-05609d5/src/libFLAC/.libs/libFLAC.a(ogg_helper.o):ogg_helper.c:(.text+0x173):
2010 Jan 18
2
[LLVMdev] LLVM-gcc for ARM
...l/lib/gcc/arm-elf/4.2.1/../../../../arm-elf/bin/ld: this linker was not configured to use sysroots collect2: ld returned 1 exit status 1. I have compiled the binutils for the arm-none-eabi target. Options: --target=arm-none-eabi --enable-multilib --with-gnu-as --with-gnu-ld --disable-nls --disable-libssp 2. I have compiled the LLVM-gcc source code with the following options: --target=arm-none-eabi --enable-llvm=path/to/llvm --with-arch=armv7-a --enable-languages=c --enable-multilib --with-newlib --enable-internetwork --without-headers --disable-shared --with-gnu-as --with-gnu-ld --disable-libssp...
2006 May 26
3
Integrating ProPolice/SSP into FreeBSD
Hi, first sorry for cross-posting but I thought this patch might interest -CURRENT users as well as people concerned by security. I wrote a patch that integrates ProPolice/SSP into FreeBSD, one step further than it has been realized so far. It is available here : http://tataz.chchile.org/~tataz/FreeBSD/SSP/ Everything is explained on the web page, but I will repeat some informations here.
2013 Mar 09
1
Can't cross-compile from git now.
...and would like to keep stack protector on. The test case below will trigger ___stack_chk_guard to emit. int main(){ int i = 0; char a[1000]; while(1){ a[i] = 0; i++; } } "i686-w64-mingw32-gcc -D_FORTIFY_SOURCE=2 -fstack-protector --param ssp-buffer-size=4 -v" shows that libssp is already added. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 834 bytes Desc: OpenPGP digital signature Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20130309/c6a28efe/attachment.pgp
2010 Jan 17
2
[LLVMdev] LLVM-gcc for ARM
I recompiled the LLVM-gcc with these options: .../llvm-gcc4.2-2.6.source/configure --prefix=`pwd`/../install --program-prefix=llvm- --enable-llvm=/home/LLVM/llvm-2.6/ --enable-languages=c  --disable-libssp  --with-gnu-ld --with-gnu-as  --with-arch=armv7-a  --target=arm-elf It compiles successfuly. make install. But when compiling a file : llvm-gcc a.c Assembler messages: Fatal error: Invalid -march= option: `armv7-a' Any ideas? Thank you, Corina --- On Sun, 1/17/10, corina s <corina_f...
2007 Dec 27
2
[LLVMdev] llvm-gcc-4.2 and gfortran
..." # LLVM LOCAL begin noconfigdirs="$noconfigdirs target-boehm-gc target-libffi" noconfigdirs="$noconfigdirs target-libgfortran target-libjava" noconfigdirs="$noconfigdirs target-libmudflap target-libobjc" noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-zlib" # LLVM LOCAL end ;; *-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" noconfigdirs="$noconfigdirs ${libgcj}" # LLVM LOCAL begin noconfigdirs="$...
2010 Jan 17
0
[LLVMdev] LLVM-gcc for ARM
> llvm-gcc a.c > Assembler messages: > Fatal error: Invalid -march= option: `armv7-a' > > Any ideas? It is probably trying to use the wrong assembler. Run with -v and check. > > Thank you, > Corina > Cheers, -- Rafael Ávila de Espíndola
2010 Jan 17
2
[LLVMdev] LLVM-gcc for ARM
Hello, Well, I recompiled the LLVM-gcc .../llvm-gcc4.2-2.6.source/configure --prefix=`pwd`/../install --program-prefix=llvm- --enable-llvm=/home/LLVM/llvm-2.6/ --enable-languages=c  --disable-libssp  --with-gnu-ld=/home/LLVM/llvm-gcc4.2-2.6.source/arm-elf-ld --with-gnu-as=/home/LLVM/llvm-gcc4.2-2.6.source/arm-elf-as  --with-cpu=cortex-a8  --target=arm-elf Everything is OK, but when trying to compile a HelloWorld source it gives me the following error: llvm-gcc a.c a.c:1:19: error: stdio.h:...
2010 Jun 17
2
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
...bin/arm_v7_vfp_le-ld --enable-checking=release --disable-multilib --enable-llvm=/home/Desktop/Sanjeev/LLVM/llvm-2.7 --enable-clocale=gnu --with-cpu=cortex-a8 --with-interwork --with-arch=armv7-a --with-mode=arm --with-tune=cortex-a8 --with-fpu=vfp3 --disable-bootstrap --disable-libmudflap --disable-libssp Thread model: posix gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build) These are the steps how I'm building library on ARM+llvm. generated .a is linked with other targets built with native arm compiler. g++-cross -flto -O2 -Wall -function-sections -fdata-sections ; for all .c...
2007 Oct 27
2
[LLVMdev] link errors on ARM with GCC 3.4.4
...ueabi --prefix=/scratchbox/compilers/cs2005q3.2-glibc-arm --with-headers=/scratchbox/compilers/cs2005q3.2-glibc-arm/usr/include --enable-languages=c,c++ --enable-shared --enable-threads --disable-checking --enable-symvers=gnu --program-prefix=arm-linux- --with-gnu-ld --enable-__cxa_atexit --disable-libssp --disable-libstdcxx-pch --with-cpu= --enable-interwork Thread model: posix gcc version 3.4.4 (release) (CodeSourcery ARM 2005q3-2) unfortunately gcc 4 has a different EABI (version 4 vs version 0) so upgrading is out of question thanks in advance, \pd\
2011 Nov 29
0
[LLVMdev] LLVM on ARM testing.
...-host=armv7a-unknown-linux-gnueabi --build=armv7a-unknown-linux-gnueabi --disable-altivec --disable-fixed-point --without-ppl --without-cloog --disable-lto --enable-nls --without-included-gettext --with-system-zlib --disable-werror --enable-secureplt --disable-multilib --enable-libmudflap --disable-libssp --enable-libgomp --with-python-dir=/share/gcc-data/armv7a-unknown-linux-gnueabi/4.5.3/python --enable-checking=release --disable-libgcj --with-arch=armv7-a --enable-languages=c,c++,fortran --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --with-bugurl=http://bugs.ge...
2007 Dec 28
2
[LLVMdev] fink llvm-gcc42 test packaging
...dirs target-boehm-gc target-libffi" - noconfigdirs="$noconfigdirs target-libgfortran target-libjava" + noconfigdirs="$noconfigdirs target-libjava" noconfigdirs="$noconfigdirs target-libmudflap target-libobjc" noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-zlib" # LLVM LOCAL end @@ -1235,7 +1235,7 @@ noconfigdirs="$noconfigdirs ${libgcj}" # LLVM LOCAL begin noconfigdirs="$noconfigdirs target-boehm-gc target-libffi" - noconfigdirs="$noconfigdirs target-libgfortran target-l...
2010 Jul 12
0
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
> ~/Desktop/Sanjeev/LLVM/llvm-2.7/Release/lib/libLLVMgold.so --eh-frame-hdr > -melf_i386 -dynamic-linker /lib/ld-linux.so.2 /usr/lib/crt1.o Ok, this way you're generating code for x86 > /usr/lib/crti.o > /usr/local/lib/gcc/i686-pc-linux-gnu/4.2.0/crtbegin.o > -L/usr/local/lib/gcc/i686-pc-linux-gnu/4.2.0  -L/usr/local/lib -lgcc > --as-needed -lgcc_s --no-as-needed -lc -lgcc
2012 Oct 11
3
dovecot cores
...bols from /lib/libpthread.so.0...(no debugging symbols found)...done. [Thread debugging using libthread_db enabled] Loaded symbols for /lib/libpthread.so.0 Reading symbols from /lib/libm.so.6...(no debugging symbols found)...done. Loaded symbols for /lib/libm.so.6 Reading symbols from /opt/ssp/lib/libssp.so.0...done. Loaded symbols for /opt/ssp/lib/libssp.so.0 Reading symbols from /lib/ld-linux.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/ld-linux.so.2 Reading symbols from /lib/libnss_files.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libnss_files.so.2...