search for: _lib

Displaying 20 results from an estimated 34 matches for "_lib".

Did you mean: _libs
2008 May 05
0
[LLVMdev] optimization assumes malloc return is non-null
...ntation and the behavior that shall be provided by any function definition in the pro- gram. If a function defined in a C++ program fails to meet the required behavior when it executes, the behavior is undefined. 4 For non-reserved replacement and handler functions, Clause _lib.lan- guage.support_ specifies two behaviors for the functions in question: their required and default behavior. The default behavior describes a function definition provided by the implementation. The required behavior describes the semantics of a function definition provi...
2008 May 21
3
[LLVMdev] 2.3 Pre-release available for testing
Razvan Aciu wrote: > As I saw from the mailing list the MSVC 2005 patches were made to take into > account the new files from the development branch, files which are not in > the 2.3 release. So for now the below patch is the only one functional for > the release. If I am wrong, please someone correct me. > > If someone can make a 2005 patch for the release branch, it is ok.
2005 Oct 10
0
Iptables Rpm Missing Modules
...is not explicit in the kernel directory location and that omission affects these few modules. Required changes in the spec file are in bold and italics (everywhere there is a /usr just replace it by /usr/src/linux-2.4): make COPT_FLAGS="$OPT" KERNEL_DIR=/usr/src/linux-2.4 LIBDIR=/%{_lib} make COPT_FLAGS="$OPT" KERNEL_DIR=/usr/src/linux-2.4 LIBDIR=/%{_lib} iptables- save iptables-restore make COPT_FLAGS="$OPT" KERNEL_DIR=/usr/src/linux-2.4 LIBDIR=/%{_lib} ip6tables-save ip6tables-restore make install DESTDIR=%{buildroot} KERNEL_DIR=/usr/src/linux- 2.4 BIND...
2008 May 01
3
[LLVMdev] optimization assumes malloc return is non-null
(Hi Mike!) On May 1, 2008, at 6:11 PM, Mike Stump wrote: > On Apr 30, 2008, at 9:26 PM, Chris Lattner wrote: >> Personally to me, I have a bigger axe to grind with C++ operator new. >> AFAIK, the standard doesn't give leeway to do a number of interesting >> optimizations for new/delete because the user is explicitly allowed >> to >> override them and the std
2007 Oct 09
1
VC6 Patch
...--- win32/theora_static.dsp (revision 13945) +++ win32/theora_static.dsp (working copy) @@ -41,7 +41,7 @@ # PROP Intermediate_Dir "Static_Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\ogg\include" /I "..\..\theora\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\ogg\include" /I "..\..\...
2004 Dec 03
2
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...ionType="4" > CharacterSet="2"> > <Tool > Name="VCCLCompilerTool" > Optimization="0" > AdditionalIncludeDirectories="..\..\tablegen_includes;..\..\include;.." > PreprocessorDefinitions="WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS" > MinimalRebuild="TRUE" > BasicRuntimeChecks="3" > RuntimeLibrary="3" > ForceConformanceInForLoopScope="TRUE" > RuntimeTypeInfo="TRUE" > UsePrecompiledHeader="0" >...
2004 Dec 03
0
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...e="4" > > CharacterSet="2"> > > <Tool > > Name="VCCLCompilerTool" > > Optimization="0" > > AdditionalIncludeDirectories="..\..\include;.." > > PreprocessorDefinitions="WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS" > > MinimalRebuild="TRUE" > > BasicRuntimeChecks="3" > > RuntimeLibrary="3" > > ForceConformanceInForLoopScope="TRUE" > > RuntimeTypeInfo="TRUE" > > UsePrecompiled...
2017 Feb 21
0
[PATCH 3/3] dib: rename "aux" to "in_target.aux"
...ysysroot/tmp/in_target.aux/hooks/bin:$PATH export TMP=$mysysroot/tmp export TMPDIR=$TMP export TMP_DIR=$TMP @@ -190,12 +190,12 @@ export IMAGE_NAME=\"%s\" export DIB_IMAGE_ROOT_FS_UUID=%s export DIB_IMAGE_CACHE=$HOME/.cache/image-create export DIB_ROOT_LABEL=\"%s\" -export _LIB=$mysysroot/tmp/aux/lib -export _PREFIX=$mysysroot/tmp/aux/elements +export _LIB=$mysysroot/tmp/in_target.aux/lib +export _PREFIX=$mysysroot/tmp/in_target.aux/elements export ARCH=%s -export TMP_HOOKS_PATH=$mysysroot/tmp/aux/hooks +export TMP_HOOKS_PATH=$mysysroot/tmp/in_target.aux/hooks export DI...
2012 Mar 23
2
Trying to link against libFLAC_static.lib (windows)
...tional Library Dependencies" and Input-> "Additional Dependencies" appropriately. Both the main app and the flac libs are build using the "runtime library" Multi-Threaded /MT (or /MTd for debug mode) The flac project is using the preprocessor definitions: WIN32 NDEBUG _LIB FLAC__HAS_OGG FLAC__CPU_IA32 FLAC__HAS_NASM FLAC__USE_3DNOW VERSION="1.2.0" FLAC__NO_DLL I'm not sure what else to try at this stage. I've reached the point where I start going in circles and accessing the same internet search results. Has anyone got any suggestions? Thanks Gle...
2017 Feb 21
3
[PATCH 1/3] dib: unset all temporary dirs envvars in fake-sudo
The real sudo does it as well, and leaving them when preserving the environment (-E) maybe breaks the applications, as e.g. chroot will have a TMPDIR path pointing outside of it. --- dib/dib.ml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dib/dib.ml b/dib/dib.ml index df83ba1..d15cd19 100644 --- a/dib/dib.ml +++ b/dib/dib.ml @@ -301,6 +301,11 @@ if [ -z \"$preserve_env\" ];
2017 Mar 04
1
Python search path
I want to create RPM spec file that lets the user build the RPM with an alternate prefix - e.g. rpmbuild -D '_prefix /opt/whatever' -bb package.spec That results in in the python files being placed in /opt/whatever/lib/pythonN/site-packages and /opt/whatever/%{_lib}/pythonN/site-packages Those directories are outside of the default python search path. I could leave it up to the user to add them, but its nice when installing a package just works (hence why we can put files in /etc/ld.so.conf.d for example) without the user needing to fuss too much. When t...
2015 Mar 13
1
[RFC PATCH v3] Intrinsics/RTCD related fixes. Mostly x86.
...support EDSP Instructions]) AC_DEFINE([OPUS_ARM_MAY_HAVE_MEDIA], 1, [Define if compiler support MEDIA Instructions]) AC_DEFINE([OPUS_ARM_MAY_HAVE_NEON], 1, [Define if compiler support NEON instructions]) OPUS_PATH_NE10() - AS_IF([test x"$NE10_LIBS" != "x"], - [enable_intrinsics="$enable_intrinsics NE10"],[]) + AS_IF([test x"$HAVE_ARM_NE10" = x"1"], + [intrinsics_support="$intrinsics_support NE10"],[]) ], [ AC_...
2015 Mar 12
1
[RFC PATCHv2] Intrinsics/RTCD related fixes. Mostly x86.
...[rtcd_support=no]) + + AS_IF([test x"$intrinsics_support" = x""], + [intrinsics_support=no], + [intrinsics_support="arm$intrinsics_support"]) + OPUS_PATH_NE10() AS_IF([test x"$NE10_LIBS" != "x"], @@ -472,18 +496,122 @@ AS_IF([test x"$enable_intrinsics" = x"yes"],[ ], [ AC_MSG_WARN([Compiler does not support ARM intrinsics]) - enable_intrinsics=no + intrinsics_support=no ]) ]...
2020 Sep 22
2
Unifying CMake variable names used in checks across subprojects
...er, with an increasing number of targets, it can be fairly slow and I have noticed that we now spend more time in CMake than in Ninja. There are various ways we could improve things like eliminating unnecessary checks. When running checks like check_c_compiler_flag, check_cxx_compiler_flag or check_library_exists, CMake caches the resulting variable and doesn't run the check again. The problem is that in LLVM, each subproject uses different variable names for results of these checks. For example, most subprojects check if pthread is available and store the result in: COMPILER_RT_HAS_LIBPTHRE...
2015 Mar 02
13
Patch cleaning up Opus x86 intrinsics configury
The attached patch cleans up Opus's x86 intrinsics configury. It: * Makes ?enable-intrinsics work with clang and other non-GCC compilers * Enables RTCD for the floating-point-mode SSE code in Celt. * Disables use of RTCD in cases where the compiler targets an instruction set by default. * Enables the SSE4.1 Silk optimizations that apply to the common parts of Silk when Opus is built in
2008 Nov 01
1
Visual Studio 2005 projects
On Sat, Nov 1, 2008 at 2:40 PM, Aymeric Moizard <jack at atosc.org> wrote: > The vcproj file provided for 2005 in 1.2rc1 does not include > _USE_SSE when compiling the project for "Release_SSE". This > define is only used when compiling under "Release_Dynamic_SSE". > > Is this just because the vcproj file is wrong or is it because > this #define must not
2012 Mar 23
0
Trying to link against libFLAC_static.lib (windows)
...appropriately. > > Both the main app and the flac libs are build using the "runtime > library" Multi-Threaded /MT (or /MTd for debug mode) > That is the MSVCR* library settings. > The flac project is using the preprocessor definitions: > > WIN32 > NDEBUG > _LIB > FLAC__HAS_OGG > FLAC__CPU_IA32 > FLAC__HAS_NASM > FLAC__USE_3DNOW > VERSION="1.2.0" > FLAC__NO_DLL > > I'm not sure what else to try at this stage. I've reached the point > where I start going in circles and accessing the same internet search > res...
2018 Apr 12
0
Fw:ldap access domain AD failed on 4.7.6 and 4.8.0
...lstatedir}/cache/samba \ --prefix=%{_prefix} \ --exec-prefix=%{_exec_prefix} \ --bindir=%{_bindir} \ --sbindir=%{_sbindir} \ --sysconfdir=%{_sysconfdir} \ --datadir=%{_datadir} \ --includedir=%{_includedir} \ --libdir=%{_libdir} \ --libexecdir=%{_libexecdir} \ --localstatedir=%{_localstatedir} \ --sharedstatedir=%{_sharedstatedir} \ --mandir=%{_mandir} \ --infodir=%{_infodir} \ --with-pammodulesdir=/%{_lib}/security \" BUILD_OPTS="\ --disa...
2004 Aug 06
2
libshout2, ices0-3 and ices2 on Win32. Announce
Well...since this is a port to Win32 patches may not make sense. Pathnames to the required libraries are relative, but hardcoded from the point of reference. Without that, it will not build. Since there are lot more files (related to the IDE as well as some project build settings which link to libraries in Win32) which have no close equivalents in the non-Win32 world. Hence can't do patches.
2017 Mar 04
2
Python search path
Hello, Working on a project to create clean spec files for libbitcoin for CentOS 7 (and eventually I want them to work in Fedora 25+ too) These spec files must work with the user defines an alternate %{_prefix} before building them. This means that python components would be installed in /opt/libbitcoin (or whatever) instead of in /usr so %{python2_sitelib} and %{python2_sitearch} no longer