search for: abdoulay

Displaying 10 results from an estimated 10 matches for "abdoulay".

Did you mean: abdoulaye
2013 Feb 27
2
[LLVMdev] [PATCH] [Embtk] [compiler-rt] ASAN: Add mips support
...redzone: f1 Stack mid redzone: f2 Stack right redzone: f3 Stack partial redzone: f4 Stack after return: f5 Stack use after scope: f8 Global redzone: f9 Global init order: f6 Poisoned by user: f7 ASan internal: fe ==267== ABORTING Signed-off-by: Abdoulaye Walsimou Gaye <awg at embtoolkit.org> --- lib/asan/asan_linux.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/asan/asan_linux.cc b/lib/asan/asan_linux.cc index 845493d..417ecad 100644 --- a/lib/asan/asan_linux.cc +++ b/lib/asan/asan_linux.cc @@ -88,6 +88,11 @@ void GetPcS...
2013 Feb 27
0
[LLVMdev] [PATCH] [Embtk] [compiler-rt] ASAN: Add mips support
On Wed, Feb 27, 2013 at 11:09 PM, Abdoulaye Walsimou Gaye <awg at embtoolkit.org> wrote: > This simple patch makes asan compile for mips (tested on mips32r2el). > The following test code: > int main() > { > char *x = (char*)malloc(10 * sizeof(char*)); > free(x); > return x[5]; > } It wo...
2013 Feb 04
2
[LLVMdev] ARM c++ exceptions handling not working with clang/llvm-3.2?
On 02/04/2013 09:32 PM, Anton Korobeynikov wrote: >> am I wrong or the ARM c++ exceptions handling does not work? > Yes, it's still work-in-progress option disabled by default. You might > want to give it a try via special cmdline line -mllvm > -arm-enable-ehabi Ohhh I see, thanks for the input! > -- > With best regards, Anton Korobeynikov > Faculty of Mathematics
2013 Feb 04
0
[LLVMdev] ARM c++ exceptions handling not working with clang/llvm-3.2?
You may also need to use: -mllvm -enable-correct-eh-support -mllvm -arm-enable-ehabi-descriptors -Chris On Feb 4, 2013, at 3:47 PM, Abdoulaye Walsimou Gaye wrote: > On 02/04/2013 09:32 PM, Anton Korobeynikov wrote: >>> am I wrong or the ARM c++ exceptions handling does not work? >> Yes, it's still work-in-progress option disabled by default. You might >> want to give it a try via special cmdline line -mllvm...
2013 Mar 18
2
[LLVMdev] Running cross compiled binaries for ARM on gem5
On 03/18/2013 10:28 AM, Renato Golin wrote: > On 17 March 2013 22:40, SArora <silkyar at umich.edu > <mailto:silkyar at umich.edu>> wrote: > > However, this errors out saying > > /home/silky/VecProject/opencv/OpenCVInstall/arm/include/opencv2/core/mat.hpp:117:9: > error: cannot compile this atomic library call yet > CV_XADD(refcount, 1);
2013 Mar 18
0
[LLVMdev] Running cross compiled binaries for ARM on gem5
On 18 March 2013 09:43, Abdoulaye Walsimou Gaye <awg at embtoolkit.org> wrote: > ** > This is the same issue reported here > http://llvm.org/bugs/show_bug.cgi?id=15429 > Yes, it does look like the same problem, thanks! Silky, feel free to add your error messages to that bug to make sure it's taken into acc...
2007 Jun 09
1
error loading US-ASCII.so
hello list, I have this error : Error loading module '/usr/local/samba/lib/charset/US-ASCII.so': Cannot open "/usr/local/samba/lib/charset/US-ASCII.so" when I try to get samba status with the start up script Samba is running under freebsd6.2-stable, I compile it from sources , with : $./configure --with-quotas --with-ads --with-ldap CPPFLAGS="-I/usr/include
2007 Aug 27
1
Error 500 when displaying after creating a controller
Hello, I''m currently learning RoR but I''m facing yp to a displaying issue. I created a RoR project via the command rails project in the OS Linux Ubuntu Then, I also created a controller: sudo script/generate controller about exists app/controllers/ exists app/helpers/ create app/views/about exists test/functional/ create app/controllers/about_controller.rb create
2013 Feb 04
2
[LLVMdev] ARM c++ exceptions handling not working with clang/llvm-3.2?
Hello, am I wrong or the ARM c++ exceptions handling does not work? See the difference between assembly generated by clang and gcc with the following test code: #include <stdio.h> #include <exception> # test.cpp int main() { try { throw 20; } catch (int e) { printf("Exception Nr %d occurred\n", e); } return 0; }
2007 Oct 13
4
Chapter 9
Hello, I''m currently stunk on this issue for few days and I do not know how to get it fixed. The system always raises this error message : order is closed and here is my order.rb: class Order < ActiveRecord::Base include ActiveMerchant::Billing before_validation :set_status attr_protected :id, :customer_ip, :status, :error_message, :updated_at, :created_at attr_accessor