similar to: Problems when running OLE apps

Displaying 20 results from an estimated 100 matches similar to: "Problems when running OLE apps"

2001 May 03
2
wineserver: /root/.wine/config is not a valid registry file
Hi! When I'm trying to run wine (I've tried many compilations), I got something like that: wineserver: /root/.wine/config is not a valid registry file Why I'm not using /etc/wine.conf, /usr/etc/wine.conf or /usr/local/etc/wine.conf? Because wineserver wants only $HOME/.wine/config... When I delete this file wineserver 'says' that I don't have configuration file (even
2017 Mar 12
6
[Bug 100177] New: [GM206] Misrendering in XCOM Ennemy Within
https://bugs.freedesktop.org/show_bug.cgi?id=100177 Bug ID: 100177 Summary: [GM206] Misrendering in XCOM Ennemy Within Product: Mesa Version: 17.0 Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee:
2010 Nov 23
2
[LLVMdev] Unrolling an arithmetic expression inside a loop
Hello, I've been redirected from cfe-dev, as code optimizations in clang are done in llvm layer. I'm investigating how optimized code clang generates, and have come across such an example: I have two procedures: void exec0(const int *X, const int *Y, int *res, const int N) { int t1[N],t2[N],t3[N],t4[N],t5[N],t6[N]; for(int i = 0; i < N; i++) { t1[i] = X[i]+Y[i];
2010 Nov 23
2
[LLVMdev] Unrolling power sum calculations into constant time expressions
Hello, I noticed that feeding 'clang -O3' with functions like: int sum1(int x) { int ret = 0; for(int i = 0; i < x; i++) ret += i; return ret; } int sum2(int x) { int ret = 0; for(int i = 0; i < x; i++) ret += i*i; return ret; } ... int sum20(int x) { int ret = 0; for(int i = 0; i < x; i++) ret +=
2010 Nov 23
1
[LLVMdev] Unrolling loops into constant-time expressions
Hello, I've come across another example: I'm compiling with clang -S -emit-llvm -std=gnu99 -O3 clang version 2.9 (trunk 118238) Target: x86_64-unknown-linux-gnu Thread model: posix I take the code: int loops(int x) { int ret = 0; for(int i = 0; i < x; i++) { for(int j = 0; j < x; j++) { ret += 1; } } return ret; } and the
2008 May 10
0
[ANNOUNCE] mkfontscale 1.0.5
This version fixes a long-standing bug in mkfontdir that would cause both PCF and BDF variants of a font to be included into the fonts.dir file under some circumstances. It also fixes the handling of OpenType/CFF fonts with embedded bitmaps, which will no longer be mistaken for bitmap fonts. Julien Cristau (1): Bump to 1.0.5 Juliusz Chroboczek (5): Fix typo in mkfontscale.c.
2008 May 10
0
[ANNOUNCE] fonttosfnt 1.0.4
This version fixes a crash on architectures that have an ``interesting'' implementation of va_list, such as AMD64. It also fixes support for fonts with non-square pixels. Alan Coopersmith (1): Change fonttosfnt_CFLAGS to AM_CFLAGS to make automake-1.10 happier George Williams (2): Fix off-by-one entrySel field. Fix handling for non-square pixels. James Cloos (2):
2001 Nov 29
0
I think we found a new bug in smbclient
Dear samba-team! We have problems with smbclient in the following conditions: SuSe Linux 7.3 -> Samba 2.2.1a Windows XP Client with shared Printer We are creating HPLIII-Printoutfiles an send them to samba_print ..... for printout on the workstation?s printer. It`s working sometimes, but not allways. We found out that the problem was reportet in /tmp/smb-print.....log samba_print calls
2015 Apr 08
2
[LLVMdev] want to intercept array dereferences
If I understand correctly, LLVM is a *typed* assembly language. Could I just look for a pointer type plus an integer type followed by a dereference? That would catch both a[n] and *(a+n). Gry On Tue, Apr 7, 2015 at 10:46 PM, Bruce Hoult <bruce at hoult.org> wrote: > Far too late. That would need to be in Clang. > > On Wed, Apr 8, 2015 at 5:36 PM, Gry Gunvor <gry.gunvor at
2012 Oct 26
0
Wine release 1.5.16
The Wine development release 1.5.16 is now available. What's new in this release (see below for details): - New version of the Mono package. - Many improvements to the CMD command-line parser. - More stream classes in the C++ runtime. - Support for managing services in WMI. - Improved CPU detection. - Various bug fixes. The source is available from the following locations:
2015 Aug 07
0
Wine release 1.7.49
The Wine development release 1.7.49 is now available. What's new in this release (see below for details): - DirectWrite is now good enough for rendering text in Steam. - A number of Direct2D improvements. - Some more OpenMP functions. - Support for namespaces in the IDL compiler. - Various bug fixes. The source is available from the following locations:
2015 Apr 08
2
[LLVMdev] want to intercept array dereferences
Normally for int n unknown at static time, "a[n]" and "*(a+n)" results in an add and then a dereference. I want instead for it to compile to a system call that takes two arguments, a and n. Where should I intercept this in LLVM? Gry
2015 Apr 07
4
[LLVMdev] how much RAM do I really need to build a devel version of LLVM?
I tried half a gig and that didn't work. I just want to know before I go buy a new machine. Gry
2015 May 01
0
Wine release 1.7.42
The Wine development release 1.7.42 is now available. What's new in this release (see below for details): - Support for dynamic timezone information. - Initial desktop shell window support. - Some more Direct2D support. - Various bug fixes. The source is available from the following locations: http://prdownloads.sourceforge.net/wine/wine-1.7.42.tar.bz2
2015 Dec 20
2
Fwd: getting started changing the emitted code: at one instruction at function top
I'm just getting started changing the emitted code. Suppose I want to just add one new instruction to the function prologue at the top. Where would I do this? Does it depend on the backend? I'm targeting RISCV64. Gry
2015 Apr 09
3
[LLVMdev] [cfe-dev] want to intercept array dereferences
On Thu, Apr 9, 2015 at 10:47 AM, Jonathan Roelofs <jonathan at codesourcery.com> wrote: >> Again, I asked the LLVM list if, since LLVM is a typed assembly >> language, if I could just look for pointer plus offset followed by a >> dereference. They seemed to suggest that looking for that idiom would > JFTR, we're one big community, and it's not as segregated
2014 Sep 14
0
Snimanja energetskih fenomena na bosanskim piramidama
Vijesti iz svijeta piramida najaktivnije arheolo?ke lokacije na svijetu Mjese?ni izvje?taj za august 2014. donosi: - Legendarni Graham Hancock na bosanskim piramidama - Potvr?ena veza izme?u podzemnih tunela i piramida - Briljantni profesor Konstantin Mejl o Podzemnom labirintu Ravne - Energetska zraka na vrhu Bosanske piramide Sunca - Konferencija ?Skrivena
2006 Feb 21
1
Resolution of plots?
Hello. I have a problem regarding the output from the R plot window. I have a quite dense dendrogram that I wish to visualize using a suitable software (like Illustrator), and to accomplish that I right click on the image from the plotting device and I save as metafile. The problem is when I scale up the image, some of the vectors in the dendrogram image are inseparable. My question is if
2007 Sep 17
0
server traffic control
Hi, Thank you very much for your replies. I have tried the ingrees - it didn''t work for me (probably bad configuration). But I''ll try to learn that later. I''m doing an N+ certification so it takes lots of my time atm. I have 2 additional questions if that isn''t a problem. Q1 : I''m trying to limit bittorrent traffic from my server. I have patched
2007 Sep 19
2
bittorrent traffic...
Hi, Thanks for the reply. Mohan Sundaram wrote : > mark in iptables and use tc to classify using mark. Mark like this ? iptables -A INPUT -m layer7 --l7proto bittorrent -j MARK --set-mark 3 and then.. tc filter add dev eth0 protocol ip parent 1:0 1 handle 3 fw flowid 1:10 and lets say we have a flowid 1:3 declared to use at 60kbit ceil 60kbit Is that proper ? If so then it