similar to: [LLVMdev] error on compiling toy-vm

Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] error on compiling toy-vm"

2013 Mar 21
1
[LLVMdev] [VMKit]
Hi there. Thanks for recent work that make vmkit working. As far as I know, ToyVM[0] is the only entry point to vmkit for beginners and I think it's outdated because of dependance of LLVM < 3.2 (bad include paths, TargetData type error, ...) Can you please, update it to recent changes if it's possible ? Also Is there other(s) way(s) to get started with vmkit ? Thanks, Baptiste. [0]
2013 Sep 18
0
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
Hi, The VMKit framework has been updated to be more generic. The getVirtualTable method is not exposed anymore since this method suppose that your object layout contains a virtual table. Now you have new methods to get / set objects type which are virtual methods inherited by the vmkit::VirtualMachine class. Thus you can still keep your object identity as virtual tables, but now the
2013 Sep 18
2
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
-- Hi all, My code is: TOY_VAR(Picture*, aPic); aPic = Picture::doNew(-2, 1, -1, 1, 1900, 1200); This code has the following compilation error: ../lib/ToyRoot.h:41:33: error: no member named 'getVirtualTable' in 'Toy::Picture' res = gc::operator new(sz, o.getVirtualTable()); ~ ^ Is it correct?
2013 Sep 02
0
[LLVMdev] Error on running ToyVM
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::Thread*); mainStartPtr = (vmkitThreadfptr)(&mainStart);
2013 Sep 05
0
[LLVMdev] Error on running ToyVM (included in vmkit)
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::Thread*); mainStartPtr = (vmkitThreadfptr)(&mainStart);
2013 Aug 08
0
[LLVMdev] ToyVM tutorial
Hi! Thank you for your project! Now I'm trying to make ToyVM like in your "VMKit tutorial", but that tutorial isn't for the very beginners and isn't very detailed. Also comments in French are not very easy for understanding . So I have problems with that. Do you have any more detailed tutorials (maybe you just haven't posted the latest version on vmkit website) and can I
2013 Aug 08
0
[LLVMdev] ToyVM vmkit question
Hi, As I see, ToyVM tutorial is the only introduction in VMKit for beginners, but I have some problems with it. For the moment I was able to build it, but without JIT compiler. I found the place in base code where to generate calling of jitCompute function, but I really have no idea understand how to do it. Best Regards, Liana. -------------- next part -------------- An HTML attachment was
2024 Jan 19
2
NUT and Eaton UPS produce a lot of error messages
On 19.01.24 17:02, Stefan Schumacher via Nut-upsuser wrote: >Jan 19 05:50:13 mars nut-monitor[849]: Signal 15: exiting >Jan 19 05:50:17 mars nut-server[1303]: Signal 15: exiting this looks like someone repeatedly killed nut server. This not a problem of UPS. -- Matus UHLAR - fantomas, uhlar at fantomas.sk ; http://www.fantomas.sk/ Warning: I wish NOT to receive e-mail advertising to this
2013 Aug 08
0
[LLVMdev] Enjoying vmkit
Hi. I became study vmkit and did not find any methods to understand its structure and functional capabilities expect building toyVM. In process of its building I have encountered with some problems: 1) I don't understand how and when tracer is called by collector, because methods MandelPix::tracer and Picture::tracer I had wrote are never called by collector; 2) I don't understand how I
2011 Aug 11
1
[LLVMdev] Instruction Insertion
Hi everybody, I'm trying to implement a LLVM Pass that insert instructions into a basicblock. I'm using a FunctionPass and I want to add somthing like this : %tmp = alloca i32, align 4 %tmp2 = alloca i32, align 4 store i32 10, i32* %tmp store i32 2, i32* %tmp2 %tmp3 = add i32 %tmp, %tmp2 I try to follow the official tuto, I think this part is out of date.
2013 Jun 03
2
nut client config?
Hello, could nut clients have its settings file? It would be easier to configure UPSes for upsc, upsmon and nut-monitor with client config file. Maybe ups.conf ? -- Matus UHLAR - fantomas, uhlar at fantomas.sk ; http://www.fantomas.sk/ Warning: I wish NOT to receive e-mail advertising to this address. Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu. My mind is like a steel
2024 Feb 19
1
msmtp not running in upssched-cmd
On 19.02.24 14:48, Dan Grostick via Nut-upsuser wrote: >Msmtp is not sending messages when invoked from upssched-cmd. >I can manually invoke it from the command line. where is its config file? >There is a 's' instead of an 'x' in the ls -l. Might this be some sort of >permission problem? Should not be the case. >upsmon.conf has run user as root. msmtp may use
2024 Mar 20
1
UNSUBSCRIBE
Marcus, I did try to do that several days ago, got the email, confirmed my desire to unsubscribe, and wad told that my "request would soon be acted upon" Yet I continue to get these messages. I'd love to have just a way to receive only message chains where I either started the question or am contributing. I don't need to see ALL the comms on the list, however this old-school
2019 Oct 04
2
CentOS 8 Release Notes - Czech translation
Hello, I see the page, but there is no button to edit it. If I try to add ?action=edit to URL, wiki shows message "Nem?te dovoleno editovat tuto str?nku." (You are not allowed to edit this page). Jan ?t 3. 10. 2019 v 21:08 odes?latel David Hrb?? <david-lists at hrbac.cz> napsal: > > Jan, > > I have created the page. Are you able to edit it? > > Regards. > DH
2010 Jan 21
1
Estimation of S.E. based on bootstrapping (functions with two or more arguments)
Hi all, I need to estimate S.E. of a certain indicator. The function to compute the value of indicator contains two arguments. Can anybody tell me how to do it? Example: We have data: a <- c(1:10) b <- c(11:20) data <- data.frame(a, b) Function to compute value of the indicator: indicator <- function(X, Y) sum(X)/(sum(Y)*2) Next I need to do the
2012 May 28
2
import contingency table
hello everyone, i often work on contingency table that I create from data.frame (with table() function) but a friend sent me an excel sheet wich *already is* a contingency table (just a simple 2 way table !...) any clue on how to import it in R (keeping row names and col names) ? any tuto I come accross only mention the table transformation, but never the import of such data I only found
2024 Jan 19
2
NUT and Eaton UPS produce a lot of error messages
I still have two questions: 1) How do I make the nut-server and nut-monitor find the right pid files? They are there but it seems they can't be opened. Permissions are nut/nut. 2) What do these error messages mean? Jan 19 16:14:52 mars nut-monitor[3781]: Init SSL without certificate database Jan 19 16:14:52 mars nut-monitor[3781]: Login on UPS [Eaton at localhost] failed - got [ERR
2006 Mar 31
0
Calendar helper adjust
Hi, I''m new on RoR and I have an issue with the dynarch calendar. I''ve read and followed Michael Schuerig''s tuto about setting up a calendar helper with the dynarch calendar but can''t make it work. Can I render the calendar inside a partial? I need a flat calendar (no activating button) which renders inside a partial. I''d appreciate
2008 Dec 17
0
Migration from NT4 to Samba PDC : NT_STATUS_INVALID_NETWORK_RESPONSE
Hello, I want to migrate from an old NT4 PDC to a Samba version 3.0.26a. My BDC configuration for migration is [global] workgroup = DOMAIN server string = %h server Samba %v interfaces = eth0, 192.168.1.0/24, lo bind interfaces only = Yes security = DOMAIN map to guest = Bad User passdb backend = tdbsam passwd program =
2014 Jun 03
0
tftpd-hpa privileges checks under inetd
Hello, I've looked at some bugs reports for tftpd-hpa and it seems that it explicitly wants to be executed with root privileges and fails if it's not. Could tftpd-hpa check for root privileges before trying to call initgroups(setgroups), setuid/setreuid and chroot() ? (and probably complain when -s is called and UID is not 0). Or do you find it useless and need for root privileges so