search for: preaty

Displaying 6 results from an estimated 6 matches for "preaty".

2006 Nov 04
2
[LLVMdev] Port succesful
...inux compatibility. Otherwise, I will look into deja-gnu testing, perhaps can compile it on windows. I will also add other beckend in the future (Sparc, PowerPC). I hope windows using Visual C++ will be soon officially supported :) About the problem I had with system and ltdl.c, it was resolved preaty easily by defining __WINDOWS__ globally in project. I also added a global macro for strtoll because the windows version is strtol (not strtoll). macro replaces strtoll with strtol and it compiles. I found really a lot of warnings in the project. Should I clean them? GCC probably doesn't th...
2006 Feb 21
1
How to install centOS SPRAC
I'd like to know where can i find an installation guide for CentOS SPARC?? I have to install CentOS SPARC on a SunMicrosystem NETRA T1, if someone could help me out with that.. thanks.. --------------------------------- Brings words and photos together (easily) with PhotoMail - it's free and works with Yahoo! Mail. -------------- next part -------------- An HTML attachment was
2003 May 22
0
Some warnings when starting Asterisk
Hi, When I start asterisk with asterisk -vvvvc it works preaty well, but I get the following warnings: Warning, flexibel rate not heavily tested! WARNING[1074494176]: File res_musiconhold.c, Line 462 (moh_register ): Unable to open pseudo channel for timing... Sound may be choppy. WARNING[1074494176]: File res_musiconhold.c, Line 462 (moh_register ): Unable...
2006 Nov 04
0
[LLVMdev] Port succesful
...will most likely have to be rewritten to run on Windows. Its very unix specific. -Tanya > also add other beckend in the future (Sparc, PowerPC). I hope windows using > Visual C++ will be soon officially supported :) > > About the problem I had with system and ltdl.c, it was resolved preaty easily > by defining > __WINDOWS__ globally in project. I also added a global macro for strtoll > because the > windows version is strtol (not strtoll). macro replaces strtoll with strtol > and it compiles. > > I found really a lot of warnings in the project. Should I clean...
2006 Nov 06
0
[LLVMdev] LLVM code emittion and C++ compiler compatibily
...Ziga. > First the calling conversion. The so called __thiscall conversion on > VC++ passes arguments on stack, while this pointer is passed > into ECX register. For GCC, as far as I am aware, the this pointer is > pushed as if it were a special (first) argument. The fix would > be preaty simple but we want the bytecode to be OS independant, so we > cannot change the bytecode. You're right. There are two flavours of thiscall CC: one using in MS VCPP, another one used by GCC. 1. Visual C++ pointer to this is passed in the ECX register, callee clears the stack, so mirroring s...
2006 Nov 06
2
[LLVMdev] LLVM code emittion and C++ compiler compatibily
...tr type is returned correctly. First the calling conversion. The so called __thiscall conversion on VC++ passes arguments on stack, while this pointer is passed into ECX register. For GCC, as far as I am aware, the this pointer is pushed as if it were a special (first) argument. The fix would be preaty simple but we want the bytecode to be OS independant, so we cannot change the bytecode. The other thing are the return types. I don't know (it is probably even not documented) how VC++ returns smart pointer (boost::smart_ptr), or any other type (other basics types, such as int, float, ... ar...