Displaying 9 results from an estimated 9 matches for "baselib".
Did you mean:
lbaselib
2017 Mar 21
4
Clang -O0 performs optimizations that undermine dynamic bug-finding tools
...h case, I would propose to not perform optimizations at -O0 to
allow dynamic bug finding tools to find such bugs, or at least offer a flag
to turn off optimizations altogether.
[1] https://github.com/google/sanitizers/issues/773
[2]
https://refspecs.linuxfoundation.org/LSB_2.0.1/LSB-Core/LSB-Core/baselib---ctype-b-loc.html
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170321/2f5806d4/attachment.html>
2012 Mar 11
0
Re: Cannot start Amnesia nor Penumbra via Steam
The applications now work again, after updating the following packages to version 20120127:
app-emulation/emul-linux-x86-baselibs-20110928
app-emulation/emul-linux-x86-xlibs-20110928
app-emulation/emul-linux-x86-medialibs-20110928
app-emulation/emul-linux-x86-soundlibs-20110928
app-emulation/emul-linux-x86-sdl-20110928I think I had tinkered with them before, though, as one of the application's title in the task-bar would...
2013 Nov 01
1
removed items from removing postfix
Here are the items removed when removing postfix:
Nov 1 09:56:59 localhost yum[22042]: Erased: google-chrome-stable
Nov 1 09:57:00 localhost yum[22042]: Erased: redhat-lsb-compat
Nov 1 09:57:00 localhost yum[22042]: Erased: redhat-lsb
Nov 1 09:57:01 localhost yum[22042]: Erased: redhat-lsb-graphics
Nov 1 09:57:01 localhost yum[22042]: Erased: redhat-lsb-printing
Nov 1 09:57:02 localhost
2009 Apr 12
1
ssh_gssapi_check_mechanism fails
Gssapi is failing at the following statement in sshconnect2.c, ok never gets
set to 1::
ssh_gssapi_check_mechanism fails
/* Check to see if the mechanism is usable before we offer it */
while (mech < gss_supported->count && !ok) {
/* My DER encoding requires length<128 */
if (gss_supported->elements[mech].length < 128 &&
2011 Jul 01
1
Aion 2.5.0.x on Sabayon 6
...atmosphere.
----
Okay first Wine-git not going to explain that you can read about that here: http://wiki.winehq.org/GitWine
Next install useful dependencies:
sudo equo install <package>
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-compat
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-medialibs
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-qtlibs
app-emulation/emul-linux-x86-java
Once you have that all done we can start on the bottle now first lets make a bui...
2017 May 25
1
"@LIBICU_CFLAGS@: No such file or directory" during libtool command for lib-fts (cross compile)
...s only anything end users should set
CXXFLAGS = -std=c++11
# DEFS only contains those UCONFIG_CPPFLAGS which are not auto-set by
platform.h
DEFS =
prefix = /raid/data/module/Dovecot/sys
exec_prefix = ${prefix}
#bindir = ${exec_prefix}/bin
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
baselibs = -lpthread -ldl -lm
#datarootdir = ${prefix}/share
#datadir = ${datarootdir}
#sbindir = ${exec_prefix}/sbin
#mandir = ${datarootdir}/man
#sysconfdir = ${prefix}/etc
UNICODE_VERSION=9.0
ICUPREFIX=icu
ICULIBSUFFIX=
LIBICU=lib${ICUPREFIX}
#SHAREDLIBCFLAGS=-fPIC
pkglibdir=${libdir}/icu${ICULIBSUFFIX}...
2009 May 03
4
Weird OpenGL problems
...sions: 2.6.99.902[1](06:30:40 PM 05/01/2009)(dri -debug)
Homepage: http://xorg.freedesktop.org/
Description: X.Org driver for Intel cards
[1] "x11" /usr/local/portage/layman/x11
% eix "emul-linux-x86-(base|x)libs"
[I] app-emulation/emul-linux-x86-baselibs
Available versions: 2.5.5-r3!s 10.1!s 10.2!s (~)20071114!s 20071118!s 20071124!s 20071128!s 20071130!s (~)20071215!s 20071230!s 20080316!s [M](~)20081109!s
Installed versions: 20080316!s(04:08:27 AM 04/28/2009)
Homepage: http://amd64.gentoo.org/emul/content.xml
Des...
2016 May 13
2
How to debug if LTO generate wrong code?
Hello,
I'm enabling clang LTO to improve code size of Uefi standard (http://www.uefi.org/) firmware (https://github.com/tianocore/edk2), which is mostly C code. My project is in https://github.com/shijunjing/edk2 branch llvm : https://github.com/shijunjing/edk2/tree/llvm. I find my most firmware modules work well after enable LTO, but some X64 modules will not run (e.g. hang with CPU
2016 May 16
2
How to debug if LTO generate wrong code?
...:
~/clang38/bin/clang -o Hello.dll -flto -O0 -nostdlib -Wl,-n -Wl,-q -Wl,--gc-sections -Wl,-z,common-page-size=0x40 -Wl,--entry,_ModuleEntryPoint -Wl,-u,_ModuleEntryPoint -Wl,-Map,Hello.map -Wl,-melf_x86_64 -Wl,--oformat=elf64-x86-64 -Wl,--start-group,, at static_library_files.lst -Wl,--end-group
BaseLib.lib: error adding symbols: File format not recognized
clang-3.8: error: linker command failed with exit code 1 (use -v to see invocation)
But if I enable the -O1, -O2, or higher -On, the ld link pass:
~/clang38/bin/clang -o Hello.dll -flto -O1 -nostdlib -Wl,-n -Wl,-q -Wl,--gc-sections -Wl,-z,...