Displaying 20 results from an estimated 27 matches for "arpan".
Did you mean:
arpa
2012 Feb 06
0
[LLVMdev] misc questions on opt and bitcode
On Feb 5, 2012, at 11:32 AM, Arpan Sen wrote:
> For the very simple example below, I get Unknown instruction error from lli and llvm-dis, while llc does not print anything. Not sure what is that I am missing here. My llvm-gcc version is i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 233...
2006 Jan 29
4
ruby can''t open library: /Library/MySQL/lib/mysql/libmysqlcl
...;m on OS X and was previously using Complete MySQL. Recently, I
upgraded to MySQL 4.1 using the regular MySQL installer.
I think that this problem probably occurred after that upgrade, as I
have not used Rails after upgrading (about a couple weeks).
Any idea how to correct the problem?
Thanks.
Arpan
--
Posted via http://www.ruby-forum.com/.
2012 Feb 06
2
[LLVMdev] misc questions on opt and bitcode
...evision is corrupted and needs a fresh install. When I ran with
the bitcode and lli here's what I get:
42-105-250-151:pastebin Babai$ llvm-gcc example.c -c -emit-llvm -o
example.bc
42-105-250-151:pastebin Babai$ lli example.bc
lli: example.bc: Invalid ALLOCA record
Pretty confusing.
Thanks,
Arpan
On Mon, Feb 6, 2012 at 6:16 AM, Eric Christopher <echristo at apple.com> wrote:
>
> On Feb 5, 2012, at 11:32 AM, Arpan Sen wrote:
>
> For the very simple example below, I get *Unknown instruction error from
> lli and llvm-dis*, while* llc does not print anything*. Not sure...
2008 Mar 11
2
xen configuration variables
Hi
Is there any link from where i can get complete information about the
variables used in xen domu configuration in details
like hvm, pae, acpi, apic, device_model etc and when to use which variable
thansk
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2006 Mar 14
3
Lighttpd stops after serving 2 requests.
...lem is definitely not in the code.
Does anyone know what the problem might be, and how to solve it?
Mac OS X 10.3.9
Ruby 1.8.4
Rails 1.0
Lighttpd 1.4.8
I''ve pasted fastcgi.crash.log here:
http://rafb.net/paste/results/080BXF63.html
All the other log files do not show any error.
Thanks
Arpan
--
Posted via http://www.ruby-forum.com/.
2008 Feb 25
4
cpu does not support long mode. use 32 bit distribution.
hi all
i am trying to boot from rhel5.1 x86_64 image. with the following
configuration
kernel = "/usr/lib/xen/boot/hvmloader"
builder=''hvm''
memory = 3048
name = "rhel51"
vcpus=1
cpus = ""
vif = [ ''type=ioemu, bridge=xenbr0'' ]
disk = [ ''phy:/dev/cciss/c0d0p7,ioemu:hda,w'',
2006 Sep 03
7
using polymorphic associations with acts_as_list
...ble, then I think I''ll create a seperate column
that combines the "image_id" and "image_type" columns into a single
column and point the scope to that, but I was hoping there was a better
and more elegant method and changing the DB for that.
Thank you for your help.
Arpan
PS: I tried posting this via Google groups web interface, but both
times it hasn''t appeared yet. Anyone know what could be wrong. Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails...
2012 Feb 05
2
[LLVMdev] misc questions on opt and bitcode
...bc
llvm-dis: Unknown instruction
1-39-155-188:pastebin Babai$ llvm-gcc example.c -emit-llvm -S -o example.s
1-39-155-188:pastebin Babai$ llc example.s
1-39-155-188:pastebin Babai$ llc example.s
1-39-155-188:pastebin Babai$ llvm-gcc example.c
1-39-155-188:pastebin Babai$ ./a.out
testing
Any ideas?
Arpan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120206/bce88b2f/attachment.html>
2012 Feb 06
0
[LLVMdev] misc questions on opt and bitcode
...lvm foo.cpp
[jhereg:~/tmp] echristo% lli foo.s
testing
[jhereg:~/tmp] echristo% llvm-gcc -S -emit-llvm foo.cpp
[jhereg:~/tmp] echristo% lli foo.s
testing
the first is using top of tree clang. The second is using an llvm-gcc on my OS. What versions are you using?
-eric
On Feb 6, 2012, at 9:10 AM, Arpan Sen <arpansen at gmail.com> wrote:
> Hi Eric,
>
> Here's the C code (example.c):
> include <stdio.h>
>
> int main()
> {
> printf("testing\n");
> }
>
> Here's the LLVM IR (from llvm-gcc):
> ModuleID = 'example.c'
>...
2006 Mar 13
4
undefined method `validates_presence_of'' for #<ProductsContr
Hi,
I am trying to use method `validates_presence_of'' for validating my
input fields on form . I m using it in my action class as follows:-
=======================
validates_presence_of(params[:product][:quantity])
======================
But when I am running my application i m getting error like:-
=========================
undefined method `validates_presence_of'' for
2012 Jan 22
0
[LLVMdev] CreateGlobalStringPtr giving linker errors
Probably your g++ compiles x86_64 binary by default, but i686 dylib is supplied?
Try:
g++ -m32 e.cpp /Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin10/4.2.1/libllvmgcc.dylib
- D.
2012/1/22 Arpan Sen <arpansen at gmail.com>:
> Hi,
>
> I am trying to use some LLVM API in my C++ code, and I end up getting linker
> errors. I am working on Apple MacOSX Lion. Using g++ for the compile. It is
> the CreateGlobalStringPtr which is throwing the error. This is LLVM 3.0.
>
>...
2012 Jan 22
2
[LLVMdev] CreateGlobalStringPtr giving linker errors
Hi,
I am trying to use some LLVM API in my C++ code, and I end up getting
linker errors. I am working on Apple MacOSX Lion. Using g++ for the
compile. It is the CreateGlobalStringPtr which is throwing the error. This
is LLVM 3.0.
Here's the codeI am trying to use some LLVM API in my C++ code, and I end
up getting linker errors. I am working on Apple MacOSX Lion. Using g++ for
the compile. It
2009 Feb 25
2
4 vcpu for windows domu
Hi i have assigned 4 vcpus to windows domu in in the configuration file for
that VM
but when i start that vm
but when i start that machine check it only shows single cpu
is there anything which need to defined or declared in configuration for
windows domu
Thanks
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2010 May 19
2
xenbr0
How to check which all network card are part of xenbr0 and what way i can
add additional nic on the fly in the xenbr0
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2006 Mar 12
1
restart ROR app running on Apache, FCGI (textdrive)
...aying an error, and I need to restart it, but have no idea how to
do it.
Could anyone advice me on that?
What are the commands to be used to start,stop and restart apps running
on Apache and FCGI. I also want to make sure that apps on my other
subdomains are not affected.
Thanks for the help.
Arpan
--
Posted via http://www.ruby-forum.com/.
2009 Jan 23
2
extend hdd in domU
Hi Alli need some information about how i can extend the HDD in domU.
I am a domU having 10GB of disk assigned to it now which is running out of
space.
is there a way i can assign a other 10GB space to the system in such a way
that it appears as a single HDD of 20GB without loss of data.
Thanks
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2012 Jan 23
1
[LLVMdev] Code crashing in CreateGlobalStringPtr, passes when I add code for main routine + entry
...-lLLVMARMInfo -lLLVMArchive -lLLVMBitReader
-lLLVMAlphaCodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMMCParser
-lLLVMCodeGen -lLLVMScalarOpts -lLLVMInstCombine -lLLVMTransformUtils
-lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMCore -lLLVMAlphaDesc
-lLLVMAlphaInfo -lLLVMMC -lLLVMSupport
Thanks,
Arpan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120123/4ab0bb0a/attachment.html>
2009 Nov 16
5
how to mount domU images on dom0
how to mount the domU images on dom0 to chroot them
mount it on the dom0 and chroot to it. I am getting an error xen
console mydomU
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2012 Feb 16
0
[LLVMdev] Unable to load a new pass: opt -load=plugin.so not working?
...ollowed by:
opt -load=pass.so -help
But I see no mention of hello in the output. I am using MacOSX Lion, and
the llvm code is something that I checked out recently from the trunk. I
ran nm on pass.so and the symbols for hello are present just fine.
Not sure what is that I missing here. Any help?
Arpan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120216/0ff91a08/attachment.html>
2008 Mar 31
1
multiple cd''s for guest os
hi
can you let me know how to change the cd of guest os on the fly.
i am having a redhat running as guest os as guest where i want to install a
package what comes in 3 cd''s can anyone help me what should be done in
configuration file or somewhere where i can switch between multiple
cd''s/dvd''s .
thanks
_______________________________________________
Xen-users mailing