search for: herzing

Displaying 20 results from an estimated 36 matches for "herzing".

Did you mean: herring
2002 May 04
2
Winbind doesn't authenticate users -2.2.4/RH 7.2
...ives a correct list of users, wbinfo -t verifies that the secret is good. Howerver, running 'getent passwd' and 'getent group' yield only the local users and groups, whereas under 2.2.3 they yielded all local and W2K domain users. Any ideas? Below is my smb.conf Russell Jungwirth Herzing College # Samba config file created using SWAT # from 192.168.10.56 (192.168.10.56) # Date: 2002/02/26 12:45:21 # Global parameters [global] workgroup = HERZING server string = student_web interfaces = eth1 smb passwd file = /etc/smbpasswd unix password syn...
2010 Jan 22
0
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
Hi, i had the same troubles on Vista and on Win7... cmake fails on some tests (you should see this in the log) due to m$ UAC (or whatever the name is) and uses not-so-sane default values. You have to start a visual c-command prompt (to make sure it gets the right paths) with administrator privileges (!) , than cmake works fine and you get a correct config.h. best regards, Thomas 2010/1/22
2010 Oct 19
3
[LLVMdev] pass case sensitive information to a llvm target backend
Hi, we use the llvm to lower c++ code to c code which can be run through our abstract interpretation framework (based on CIL). Along with the c code we emit some structured text files that contain the "lost" information (class hierarchy, private/public attributes etc). In order to output this information in a sensible way we need to pass unix paths and some more case sensitive
2010 Jan 22
2
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
Hi, I just started with LLVM so I'm not sure who's responsible for portability. Anyways, I found the following problems trying to compile llvm rev 94074 with the solution generated using cmake 2.8 (including the clang front end) on 32bit vista: lib/system Errno.cpp : had to add "#undef HAVE_STRERROR_R" raw_ostream.cpp: had to add "#undef HAVE_UNISTD_H"
2010 Oct 19
0
[LLVMdev] pass case sensitive information to a llvm target backend
Hi Alex, That sounds like the sort of information that should be extractable from the debug information metadata. Once you're in LLVM IR, things like class names and source types are not guaranteed to be preserved in a reverse-mappable sort of way (from IR names to source names) in the IR itself. The debug information, however, is intended to do exactly that. -Jim On Oct 19, 2010, at 12:52
2010 Jan 27
3
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
The ll file: ; ModuleID = 't.bc' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32" target triple = "i686-pc-win32" @.str = private constant [13 x i8] c"hello world\0A\00" ; <[13 x i8]*> [#uses=1] define i32 @main(i32 %argc, i8** %argv)
2010 Jan 27
0
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
Anton, This is a because the "windows" x86 target defaults to intel syntax asm. I'm not even sure what the "windows" subtarget is if not for mingw or cygwin. Does it make sense to remove the "Windows" target and have "i686-pc-win32" just be a synonym for mingw? -Chris On Jan 27, 2010, at 1:32 AM, herz wrote: > The ll file: > > ; ModuleID
2003 Jun 14
15
herz the script that i have done.
Hello there, Having made quite a lot of expensive mistakes i have finally clobbered together a script for the users on my network. Have a look at it and please suggest as to how can i limit bandwidth to each ip on this network to about 64Kbits. Trevor -- ( >- GNU/LINUX, It''s all about CHOICE -< ) /~\ __ trevor@clovertechnologies.com __ /~\ | \) / Pre Sales
2010 Aug 06
1
[LLVMdev] How to access Debug Type Information (from Cbackend)
Hi, I'm trying to recover the inheritance relations for a class type (so a list of base classes) from a llvm ir file generated via compiling some cpp file using clang. I have access to the TypeSymbolTable and have found the class type I want to know the base classes for in the table. How do I go about extracting this (debug) information? I'm stuck here: if(StructType*
2010 Oct 18
0
[LLVMdev] pass case sensitive information to a llvm target backend
On Oct 18, 2010, at 8:31 AM, Alexander Herz wrote: > we're writing a new target backend (based on the c backend) for the > llvm. We need to pass case sensitive strings from the command line to > the backend (unix paths). Currently we're using the Subtarget features > string to relay the information. > It turns out that the llvm applies a to_lower to the this string, so >
2006 Dec 16
1
object combinations
hello list, i've got 8 objects and i want to calculate a list with all combinations of them. the output should contain the object names. for example: object1 & 2, 1 $ 3, ... best regards mirca -- "Ein Herz f?r Kinder" - Ihre Spende hilft! Aktion: www.deutschlandsegelt.de Unser Dankesch?n: Ihr Name auf dem Segel der 1. deutschen America's Cup-Yacht!
2006 Feb 17
2
Login processes don't die
Hello, I'm a fresh dovecot user (resp. admin), using dovecot 0.99.14 (a little old, but that's what Debian Sarge provides). In general everything works as it should, but there's something that makes me wonder. The wiki says "By default each login process will handle only a single connection and afterwards kill itself." But it does look different to me. On startup there are
2010 Oct 18
1
[LLVMdev] pass case sensitive information to a llvm target backend
Hi, we're writing a new target backend (based on the c backend) for the llvm. We need to pass case sensitive strings from the command line to the backend (unix paths). Currently we're using the Subtarget features string to relay the information. It turns out that the llvm applies a to_lower to the this string, so unix paths become basically useless. Is there a better way to pass this
2007 Nov 11
5
Secure authentication?
I have enabled SSL support for my dovecot installation but if I enable secure authentication in my MUA, I get an error from dovecot telling me that this is not supported.. Is this because dovecot does not support this or am I missing some config? Regards, BTJ -- ----------------------------------------------------------------------------------------------- Bj?rn T Johansen btj at havleik.no
2010 Jan 26
0
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
On Jan 26, 2010, at 6:31 AM, herz wrote: > Hi, > > I've generated a .bc file for a simple program using the clang front > end, the human readable output of llvm-dis looks good. > Running llc on the bc file generates an assembly file (.s using either > att or intel syntax). > Now, when I try to generate an executable with gcc (3.4.4 cygwin) I > get > lot's of
2010 Jan 28
2
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
Well, can I enforce gcc compatible output somehow? I tried playing with the llc flags which didn't help. A possible subtarget for windows might be masm, the msvc compiler and the like. Alex Chris Lattner schrieb: > Anton, > > This is a because the "windows" x86 target defaults to intel syntax asm. I'm not even sure what the "windows" subtarget is if not for
2006 Dec 14
2
Samba PDC with Ldap, problems after restart
Hello, I have installed my Samba as a PDC with LDAP Backend, it worked fine, I was able to join the Domain with a Windows XP Client.But Today when i started the server, i can't join a domain anymore. I also can't add users to ldap anymore with smbldap-tools i always get this failure message: 3444 Use of uninitialized value in substitution (s///) at /usr/share/perl5/smbldap_tools.pm line
2010 Jan 26
2
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
Hi, I've generated a .bc file for a simple program using the clang front end, the human readable output of llvm-dis looks good. Running llc on the bc file generates an assembly file (.s using either att or intel syntax). Now, when I try to generate an executable with gcc (3.4.4 cygwin) I get lot's of errors: $ gcc t.S t.S: Assembler messages: t.S:4: Error: no such instruction: `align
2010 Jan 28
2
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
Hi, I tried that before, it produces .text ALIGN 16 .globl _main _main: ; @main ; BB#0: ; %entry subl $20, %esp movl $0, 16(%esp) movl 24(%esp), %eax movl %eax, 12(%esp) movl 28(%esp), %eax movl %eax, 8(%esp) movl $($_.str),
2010 Feb 09
0
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
On Jan 28, 2010, at 1:31 AM, Alexander Herz wrote: > Hi, > > I tried that before, it produces Anton, the issue here is the 'isWindows' X86 sub-target. Should it just use the MCAsmInfo values as MingW? -Chris > > .text > ALIGN 16 > .globl _main > _main: ; @main > ; BB#0: