search for: jayaprakash

Displaying 5 results from an estimated 5 matches for "jayaprakash".

2019 Mar 12
2
Query about JIT
Hi Alexey, Thank you very much for your detailed reply, will look into the resources indicated. I'd like to avoid C++ if possible, let me see how it goes. Regards, Rajesh Jayaprakash On Tue 12 Mar, 2019, 6:35 PM Sachkov, Alexey, <alexey.sachkov at intel.com> wrote: > Hi Rajesh, > > If I understand correctly, libclang is a C interface to Clang features, > not LLVM. That means that you cannot get LLVM IR via libclang: The C > Interface to Clang provides a r...
2019 Mar 08
2
Query about JIT
...issue I foresee is that libclang's clang_parseTranslateUnit() function expects the C code to be from a file (although the file can be in-memory), whereas in my case the C code needs to be picked up from a char buffer - necessitating fmemopen(), etc. Thanks for your assistance. Regards, Rajesh Jayaprakash (https://github.com/shikantaza/plisp) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190308/7b357f28/attachment-0001.html>
2003 Nov 28
7
installation error
Hello, I tried to install samba 3.0.0. on sa slackware system and within the "make" process I have this error: "Binding bin/smbd :collect2: ld terminated with signal 15 [Terminated] make : *** [bin/smbd] Error 1." Please, tell me what can I do to solve this problem. I tried to find @ google and I got no answer. Thank you a lot. Stefan Pandele [t] 0723046178 [e] psc@k.ro
2014 Feb 22
0
Validates inclusion of include fails at plugin.
Hello, MyModel.rb, TYPES = { "type1" => 1 , "type2" => 2, "type3" => 3 }.freeze validates_inclusion_of :my_type, :in => TYPES.keys --------------------------------------- MyModelPatch.rb, base.send(:remove_const, :TYPES) base._validators[:my_type].reject!{ |validator| validator if validator.is_a? ActiveModel::Validations::InclusionValidator } TYPES =
2014 May 26
0
Class Variables - Static.
Hello, When setting the class static variables, These are shared across all the instances created. Class A @@bool_var = true def get_bool_var @@bool_var end end All the instances will have this static variable, When through a controller, a user requests, Based on some logic, I set the value to false. Is this class static variable be set to false in all the other requests from other