Displaying 7 results from an estimated 7 matches for "absvsi2".
Did you mean:
absvdi2
2014 Jan 31
2
[LLVMdev] [cfe-dev] Sanitizers libs in Compiler-RT
...Not sure how to do this in configure+make w/o "make clean"...
>>
>
> Make compiler-rt doesn't re-make it on changes. Nor does make check-asan
> or check-all.
>
Right now, in my CMake build tree I've ran "make compiler-rt", then changed
compiler-rt/lib/absvsi2.c, then ran "make compiler-rt" again, and saw
that lib/clang/3.5/lib/linux/libclang_rt.x86_64.a was indeed rebuilt.
>
> cheers,
> --renato
>
--
Alexey Samsonov, MSK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/...
2014 Jan 31
2
[LLVMdev] [cfe-dev] Sanitizers libs in Compiler-RT
On 31 January 2014 10:26, Renato Golin <renato.golin at linaro.org> wrote:
> On 31 January 2014 10:01, Alexey Samsonov <samsonov at google.com> wrote:
>
>> Right now, in my CMake build tree I've ran "make compiler-rt", then
>> changed compiler-rt/lib/absvsi2.c, then ran "make compiler-rt" again, and
>> saw that lib/clang/3.5/lib/linux/libclang_rt.x86_64.a was indeed rebuilt.
>>
>
> I was changing the lit.config files, probably they're not in the
> dependency graph?
>
Correction, not only the lit.config but also th...
2011 Jan 07
1
[LLVMdev] [PATCH] compiler-rt patch for clean build on Solaris 10 / x86
...tch -p0 < ../solaris_stdint.patch
patching file lib/int_lib.h
octo.tbricks.com:llvm/clean/compiler-rt>
-bash-3.00$ gmake
[ 1%] Built target BlocksRuntime
[ 2%] Building C object lib/CMakeFiles/CompilerRT-Generic.dir/absvdi2.c.o
[ 2%] Building C object lib/CMakeFiles/CompilerRT-Generic.dir/absvsi2.c.o
.
.
.
[100%] Building C object test/CMakeFiles/umodti3_test.dir/Unit/umodti3_test.c.o
Linking C executable umodti3_test
[100%] Built target umodti3_test
-bash-3.00$ file BlocksRuntime/libBlocksRuntime.so
BlocksRuntime/libBlocksRuntime.so: ELF 64-bit LSB dynamic lib AMD64 Version 1, dynami...
2014 Jan 31
2
[LLVMdev] [cfe-dev] Sanitizers libs in Compiler-RT
On Fri, Jan 31, 2014 at 1:35 PM, Renato Golin <renato.golin at linaro.org>wrote:
> On 31 January 2014 09:22, Alexey Samsonov <samsonov at google.com> wrote:
>
>> 1) If ASan runtime has changed, re-build it, and re-run tests.
>> 2) If FileCheck or lit sources have changed, I should re-build them (but
>> not ASan runtime) and re-run tests.
>> 3) If Clang
2011 May 21
0
[LLVMdev] compiler-rt compile problem for 32bit OS X
....
make[5]: *** [/Users/erickt/Projects/llvm/gcc-i386/llvm-build-Release/tools/clang/runtime/compiler-rt/clang_darwin/cc_kext/armv6/SubDir.lib/addsf3.o]
Error 1
make[5]: *** [/Users/erickt/Projects/llvm/gcc-i386/llvm-build-Release/tools/clang/runtime/compiler-rt/clang_darwin/cc_kext/armv6/SubDir.lib/absvsi2.o]
Error 1
error: unable to create target: 'No available targets are compatible
with this triple, see -version for the available targets.'
error: unable to create target: 'No available targets are compatible
with this triple, see -version for the available targets.'
1 error generate...
2013 Oct 31
3
[releng_10 tinderbox] failure on i386/pc98
...ge 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
[...]
CC='cc ' mkdep -f .depend -a -DVISIBILITY_HIDDEN -std=gnu99 /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvti3.c /src/lib/libcompiler_rt/../../contrib/com...
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...an_iossim_dynamic := $(AsanFunctions) $(AsanCXXFunctions) \
FUNCTIONS.ubsan_osx := $(UbsanFunctions) $(UbsanCXXFunctions) \
$(SanitizerCommonFunctions)
+FUNCTIONS.safestack_osx := $(SafeStackFunctions) $(InterceptionFunctions)
+
CCKEXT_COMMON_FUNCTIONS := \
absvdi2 \
absvsi2 \
diff --git a/make/platform/clang_linux.mk b/make/platform/clang_linux.mk
index 2edbfff..3a8ab08 100644
--- a/make/platform/clang_linux.mk
+++ b/make/platform/clang_linux.mk
@@ -50,7 +50,7 @@ endif
# Build runtime libraries for i386.
ifeq ($(call contains,$(SupportedArches),i386),true)
Configs...