search for: iself

Displaying 12 results from an estimated 12 matches for "iself".

Did you mean: itself
2008 Feb 09
2
[LLVMdev] exception handling broken on x86-64?
...think the generated code is fine, just the exception handler info in > the non-code sections is broken/missing. It seems, that EH dwarf information emission is disabled in X86TargetAsmInfo.cpp. Remove the is64Bit() condition near "SupportExceptionHandling = true" line in X86Subtarget::isELF section. Also, don't forget to add --enable-eh switch to llc invocation. You will need to link .S with your native unwinding runtime (so, use g++ to link, not llvm-g++) -- WBR, Anton Korobeynikov
2008 Feb 09
0
[LLVMdev] exception handling broken on x86-64?
...d code is fine, just the exception handler info in >> the non-code sections is broken/missing. > It seems, that EH dwarf information emission is disabled in > X86TargetAsmInfo.cpp. Remove the is64Bit() condition near > "SupportExceptionHandling = true" line in X86Subtarget::isELF section. > > Also, don't forget to add --enable-eh switch to llc invocation. Just in case it doesn't work the first time:) patch 46029 might be helpful. That made it work on Darwin for me, and it's possible some of the changes there are also applicable to Linux. Compare you...
1999 Nov 30
1
image stops detecting wrong sized z matrix (PR#352)
...rid$x, grid$y, grid$krige$zhat, add = T) Error in length(x) == nrow(z) : comparison (1) is possible only for vector types in previous versions of R the above image() call worked, because image() did the transformation grid$krige$zhat -> matrix(grid$krige$zhat,length(grid$x),length(grid$x)) iself. (BTW, contour() didn't) Was this change of behaviour in image() made intentionally? Anyway I will change the Rd help page for krige in sgeostat to ... image(grid$x, grid$y, matrix(grid$krige$zhat,length(grid$x),length(grid$x)), add = T) ... Albrecht -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2008 Feb 11
1
[LLVMdev] exception handling broken on x86-64?
...just the exception handler info in >>> the non-code sections is broken/missing. >> It seems, that EH dwarf information emission is disabled in >> X86TargetAsmInfo.cpp. Remove the is64Bit() condition near >> "SupportExceptionHandling = true" line in X86Subtarget::isELF >> section. >> >> Also, don't forget to add --enable-eh switch to llc invocation. > > Just in case it doesn't work the first time:) patch 46029 might be > helpful. That made it work on Darwin for me, and it's possible some > of the changes there are also...
2006 Jun 19
1
Feature request: Multi-head awareness in compiz and plugins
...uld it be structured? Which parts would need changes? Where to contribute best? As far as I can judge, it would be better to include abstract multi-head aware code in compiz already than at any later version. Doing it some months later, it would probably need changes to all and everything (compiz iself, any future plugins). A better approach if the Non-Xinerama way to handle multi-head setups is not clear yet, would be to implement "abstract helper" functions to be able to drop-in the multi-head functionality (kind of what the Xinerama patches do with the "Head" functions/han...
2013 Mar 19
7
xen 4.1.3, EFI boot and "no console to OS" problem
...can''t get console access working with Xen. The strange thing is, despite the "WARNING: no console will be available to OS" appearing during xen loading, the console actually starts, the graphical login screen does even appear... and then freezes. Just the console; the system iself continues to run normally. Booting the system up without xen leaves also the console working. Yet i do need this console: after some testing i have to implement this new Suse/Xen install on a distant server (which has a management module for remote console access) and I just can''t risk...
2009 Jul 15
1
[LLVMdev] How do I generate a Dwarf file?
Hello, Does anyone know how to generate a Dwarf file for a Windows target? I discovered the DwarfWriter class, but I'm not sure how to add it to the pass manager. Also, what x86 subtarget should I use? From what I can tell, there are five choices: isELF, isDarwin, isCygwin, isMingw, and isWindows. isCygwin and isMingw appear to generate a COFF file in X86TargetMachine.cpp, but that seems unlikely because I don't see a COFF writer in the source code. The fifth choice, isWindows, appears to be the default Windows option that generates no debug...
2006 Dec 12
0
Keep track total data transferred
...f a link was clicked and the file linked to was X many megabytes, then that''s how much was downloaded, when realistically the user could cut off the download at any given moment or never even really save the file. Is there any way for me to do this? Is it even feasible to do within Rails iself? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.g...
1997 May 29
1
Vulnerability of suid/sgid programs using libXt
...Distribution of this document is unlimited Copyright (C) Alexander O. Yuriev (alex@yuriev.com) Net Access Abstract A buffer overflow was found in the resource handling section of the X11 system (libXt). As this is a problem with libXt iself, every program using libXt is affected, including core programs such as xterm and programs derived from it. Of course only suid and sgid programs can be exploited to gain access to gain extra priviledges. Permanent Solution The permanent solution requires fixing the libXt. It...
2005 Mar 02
8
Why should I answer a Newbie question, there thick!
It would be nice just for once to actually use a mailing list with people who are a little more sympathetic to the fact that your not a rocket scentist or molecular biologist and that you might actually need some help, without being made to feel like your completely useless and should be cleaning toilets for a living. "Ahhh man not another stupid newbie question! are these people completely
2009 Jul 01
14
can''t boot 2009.06 domU on Xen 3.4.1 / CentOS 5.3 dom0
I''ve got a CentOS 5.3 dom0 with Xen 3.4.1-rc5 (or so). I''ve tried the same stuff below with 3.4.0, no difference. I''m trying to install 2009.06 PV domU based on instructions from [1] and [2]. I can run the install fine, I can also get the kernel and boot archive (from [2]) after the install. But for the life of me I can''t get the installed domU to boot. If I
2017 Apr 06
14
[PATCH v6 0/7] Feature: Yara file scanning
...stfs/2016-November/msg00119.html It turns out impractical due to YARA API limitations. It is possible to load multiple rule source files into the compiler. Yet once compiled no further rule file can be added. This would make the yara_load API difficult to understand for the end User. The yara tool iself cannot scan files with more than a rule file. To combine multiple rule files the User is recommended to use the yarac tool. This makes the yara_load API more similar to the yara workflow. - further small fixes according to the v5 comments After further Matteo Cafasso (7): daemon: expose file...