search for: sabaliauskas

Displaying 9 results from an estimated 9 matches for "sabaliauskas".

2008 Aug 19
3
Dovecot and fake users
Hi everyone, Our company has decided to make a fake POP3 (and possibly IMAP) server, which accepts any user name and password combination and shows there are no new messages. This is for the purpose that when our mail cluster passes out, we can redirect our clients to this server while we fix our mail system. This way we can prevent our users from getting errors. We are using the latest
2011 Feb 16
0
[LLVMdev] Possible LLVM or DragonEgg bug
This is hopefully fixed in the latest version of dragonegg. Thanks for reporting it! Ciao, Duncan. On 15/02/11 20:54, sabaliauskas g. (gs5g08) wrote: > I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): > > /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_...
2008 Feb 08
3
Question about Asterisk versions (newbie)
Hello, I would like to consulate with you guys. I'm setting up an Asterisk server on Debian. The problem is that Rhino drivers are only compatible with Zaptel 1.2. By default debian stable offers asterisk 1.2 and zaptel 1.2, and that suits our needs. Is there a bleeding need to use latest version of asterisk? I have managed to install Asterisk 1.4 and Zaptel 1.2 but then i got the
2011 Feb 17
1
[LLVMdev] Possible LLVM or DragonEgg bug
....edu] On Behalf Of Duncan Sands [baldrick at free.fr] Sent: Wednesday, February 16, 2011 5:14 PM To: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Possible LLVM or DragonEgg bug This is hopefully fixed in the latest version of dragonegg. Thanks for reporting it! Ciao, Duncan. On 15/02/11 20:54, sabaliauskas g. (gs5g08) wrote: > I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): > > /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_...
2011 Feb 15
3
[LLVMdev] Possible LLVM or DragonEgg bug
I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_MACROS -fplugin=/home/John/Documents/Project/DragonEgg/dragonegg/dragonegg.so -O3 -DNDEBUG -fomit-frame-pointer -O3 -ffast-math -mmmx
2010 Oct 02
2
[LLVMdev] DragonEgg OpenMP support
Hi, I would like to ask which version of OpenMP is supported by DragonEgg and at which extent(i.e. fully, partially etc.).
2008 Jan 09
1
Newbie: confusion with the new FXO/FXS card
Hello everyone, I'm trying to set up a Asterisk server. I have two cards - one is an BeroNet BN2S0 with two ISDN lines (4 channels): http://www.adcomtec.com/webstore/beronet_bn2s0.php?cat=90 and a Rhino R8FXX with one FXO module and two FXS: http://www.voipsupply.com/product_info.php?products_id=2940 I would like to set up an Asterisk server with 8 phones, which will share the phone
2010 Oct 01
2
[LLVMdev] LLVM and OpenMP
I would like to ask if LLVM supports OpenMP, and if yes, which particular version is supported?
2010 Nov 10
2
[LLVMdev] Bug in DragonEgg or LLVM
The following code using OpenMP pragmas , when compiled with gcc 4.5 + LLVM 2.8 + DragonEgg 2.8 and ran, produces segmentation fault. //----------------------------------------------------------- #define LOOPCOUNT 10000 int main() { int bit_and = 1; int logics[LOOPCOUNT]; int i; for (i = 0; i < LOOPCOUNT; ++i) { logics[i] = 1; } #pragma omp parallel for schedule(dynamic,1)