similar to: Help with simple dll wrapper around linux so

Displaying 20 results from an estimated 200 matches similar to: "Help with simple dll wrapper around linux so"

2009 Sep 03
4
build wine dll problem
I am trying to follow the instructions here (http://www.winehq.org/docs/winelib-guide/bindlls-wrapper) to build a dll with wine that i can load dynamically in a windows wine application. this is what i am doing: MyWinDll.spec Code: 2 stdcall MyWinFunc (int) MyProxyWinFunc MyWin.c Code: #include <windef.h> short MyProxyWinFunc(int *i) { return 5; } shell Code: winemaker --nosource-fix
2011 Jun 21
2
Using winemaker / building wine DLLs
Hi. I'm not sure if this is the correct place for this question, or if the wine-devel list is more appropriate; please let me know if I should ask over there. I'm trying to build, using winemaker/winegcc/etc, a DLL for use with a Windows binary. This is a somewhat unusual case, in that this library is actually explicitly being written for a Windows binary that will run in Linux (I'm
2001 Jul 06
2
winelib and compiling MFC
Hi, The company I work for, has asked me to use winelib to port some code, however I have a problem compiling the MFC. I run winemaker 0.5.7 with options: 'winemaker --lower-uppercase -nomfc --dll ./ > \ winemaker_output.txt' No errors in file or stderror; further winemaker accesses the correct directories. But when I run ./configure as: './configure --with-wine=/usr/bin \
2006 Sep 12
4
2.6.9-42.ELsmp kernel and 3ware 9550 tools
I have the latest kernel with the drivers for my 3ware 9550SX built in. Where can I find the tools and monitoring apps for this card? Are there rpms hiding somewhere, or do I need to build it from source? -- Bowie
2001 Feb 22
2
afx.h... configure: error: Could not find the MFC includes
This is driving me nuts. I'm trying to compile an MFC application using WINE. I can specify the location of the ATL includes and configure is quite happy but it chokes when I give it the MFC includes in the same way: ./configure --with-atl-includes=/home/wade/VC98/atl/Include --with-mfc-includes=/home/wade/VC98/mfc/Include Wassup? I'm using Winemaker 0.5.5 And wine
2007 Mar 19
3
Agent 4.0 and wine
I have been running Agent3.3 uner Linux debian sarge, wine 0.0.20050310-1.2, fake windows partition. Absolutely no problems, even when tackling large groups like binaries or advocacy. But the upgrade to V4 did not go well. I went back to 3.3 and managed to reproduce under reduced conditions: * Created a new, vanilla user called gorby * Created a new fake windows setup with a vanilla
2001 Nov 13
1
Coldfusion Studio 4.5.2 and Wine
I am a Coldfusion under Linux ISP, and could really use some help making Coldfusion Studio (the development IDE) run uner wine... any suggestions or has someone maybe done it? Thanks! _________________________________________ Brian Tafoya http://briantafoya.com _________________________________________
2011 Jan 05
2
[OT] RHEVM List
Greetings, Apologies for Off thread (and possibly stupid) question: Where on the net one can find the RHEV-M general list like this one for centos <rant> I have been tearing my hair for past week to make RHEV work with two boxens. One RHEV H and one running XP with two VMs uner VMware WS. One VM is openfiler for iscsi storage and another VM w2k3 for RHEVM. Search in foogle for the error
2001 Jul 10
0
Compiling MFC with Winelib - was Need advice porting app
I've changed the message thread to compiling MFC with Winelib because I believe that is the real essence of my issue at hand. If I can figure out how to compile MFC then I will have solved my dillemma of which way to choose in porting my app to Linux. If I can't then I can use the only path available. So, there is a big vacant spot in the WineLib users guide for compiling MFC. I've
2007 Aug 10
3
Building rpm-s from binaries
Hi, We'd like to simplify deployment of new blades and I need to package some of proprietary libs we are using, and obviously I don't have sources for them. Can anybody point me into good direction how to make packages from binaries? I have basic knowledge about building rpms, but it seems to be source oriented. Thanks in advance -- Tomasz Napierala System Administrator Allegro Team
2009 Feb 03
1
Some question of DHT Translator?
Does DHT Translator all files under the same directory will be store on the same node? It sounds terrible. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://supercolony.gluster.org/pipermail/gluster-users/attachments/20090203/ebbdc7a5/attachment.html>
2001 May 22
0
Call for volunteers
Hi, I have built a list of projects that would benefit Wine (or at least would make me feel better) and yet should be easy to tackle by new Wine developpers. So if you wanted to contribute to Wine but just did not know where to start I hope this list can provide you with some ideas. If you want to contribute but don't find anything that motivates you in this list, just post a message
2007 Jun 13
0
[RPMS] XGL/Compiz git Fedora packages
Hello, I'm new to the list but I've been following it since its inception. First of all sorry for the length of this post, if you're not a Fedora user just skip it. I've been building Compiz packages since Fedora Core 5 came out (Xgl only) and updating since then with all the new stuff, AIGLX and whatever. I use them on a very large range of hardware. Attached are my source rpm
2014 Oct 24
3
[LLVMdev] IndVar widening in IndVarSimplify causing performance regression on GPU programs
Hi, I noticed a significant performance regression (up to 40%) on some internal CUDA benchmarks (a reduced example presented below). The root cause of this regression seems that IndVarSimpilfy widens induction variables assuming arithmetics on wider integer types are as cheap as those on narrower ones. However, this assumption is wrong at least for the NVPTX64 target. Although the NVPTX64 target
2015 Feb 17
2
[LLVMdev] why llvm does not have uadd, iadd node
So if the overflow happens for either one of the case, the return value will be implementation dependent? best kevin On Feb 17, 2015, at 2:01 PM, Tim Northover <t.p.northover at gmail.com> wrote: > Hi Kevin, > > On 17 February 2015 at 10:41, kewuzhang <kewu.zhang at amd.com> wrote: >> I just noticed that the LLVM has some node for signed/unsigned type( like udiv,
2015 Feb 17
5
[LLVMdev] why llvm does not have uadd, iadd node
Hi guys, I just noticed that the LLVM has some node for signed/unsigned type( like udiv, sdiv), but why the ADD, SUB do not have the counter part sadd, uadd? best kevin
2008 Oct 30
1
[LLVMdev] Using patterns inside patterns
I do not have access to a subtraction routine, as it is considered add with negation on the second parameter, so I have this pattern: // integer subtraction // a - b ==> a + (-b) def ISUB : Pat<(sub GPRI32:$src0, GPRI32:$src1), (IADD GPRI32:$src0, (INEGATE GPRI32:$src1))>; I am attemping to do 64 bit integer shifts and using the following pattern: def LSHL :
2008 Oct 30
0
[LLVMdev] Using patterns inside patterns
I am not sure what you are looking to do. Please provide a mark up example. Evan On Oct 28, 2008, at 11:00 AM, Villmow, Micah wrote: > Is there currently a way to use a pattern inside of another pattern? > > Micah Villmow > Systems Engineer > Advanced Technology & Performance > Advanced Micro Devices Inc. > 4555 Great America Pkwy, > Santa Clara, CA. 95054 > P:
2009 Feb 16
0
[LLVMdev] Modeling GPU vector registers, again (with my implementation)
Alex, From my experience in working with GPU vector registers; there is no support for swizzles in the manner that you would normally code them, and in my case I have 6^4 permutations on src registers and 24 combinations in the dst registers. The way that I ended up handling this was to have different register classes for 1, 2, 3 and 4 component vectors. This made the generic cases very simple
2009 Feb 16
2
[LLVMdev] Modeling GPU vector registers, again (with my implementation)
Evan Cheng-2 wrote: > > Well, how many possible permutations are there? Is it possible to > model each case as a separate physical register? > > Evan > I don't think so. There are 4x4x4x4 = 256 permutations. For example: * xyzw: default * zxyw * yyyy: splat Even if can model each of these 256 cases as a separate physical register, how can I model the use of r0.xyzw in