search for: shld

Displaying 20 results from an estimated 46 matches for "shld".

Did you mean: shl
2002 Jul 25
2
pam_smbpass.so won't load
...2 (0x80000000) so it is not linked to libldap any ideas what's up here? does this make sense? =================================================================== RCS file: /cvsroot/samba/source/Makefile.in,v retrieving revision 1.227.2.145 diff -r1.227.2.145 Makefile.in 656c656 < $(SHLD) @LDSHFLAGS@ -o $@ $(PAM_SMBPASS_OBJ) $(LDFLAGS) -lpam $(DYNEXP) $(LIBS) -lc \ --- > $(SHLD) @LDSHFLAGS@ -o $@ $(PAM_SMBPASS_OBJ) $(LDFLAGS) -lpam $(DYNEXP) $(LIBS) $(LDAPLIBS) -lc \ brad
2006 Jul 06
1
Problem compiling pam_winbind.so on Solaris (samba-3.0.23rc3)
...make pam_winbind.so on Solaris (8 and 9). So i had a look at the Makefile and found out that there seem's to be some things missing.... :-)) > bin/pam_winbind.@SHLIBEXT@: $(PAM_WINBIND_OBJ:.o=.@PICSUFFIX@) bin/.dummy > @echo "Linking shared library $@" > @$(SHLD) $(LDSHFLAGS) -o $@ $(PAM_WINBIND_PICOBJ) \ > @SONAMEFLAG@`basename $@` -lpam @INIPARSERLIBS@ PAM_WINBIND_PICOBJ are not defined in Makefile.in !! what I did to solve this: bash-2.03# diff samba-3.0.23rc3-orig/source/Makefile.in samba-3.0.23rc3/source/Makefile.in 1219c1219 &lt...
2011 Jun 22
3
Help Needed on Merging Columns by Summation
...451 468 201 90 131 320 518 For certain specific columns, I need to merge the columns in such a way that the elements get added together. For example, in order to merge the first and the second columns, my output for the first row shld be ko:K00001/ko:K00003 AAA 1001 (i.e. 370+631) KAA 1811 (i.e. 603+1208) and so on for the whole column. A colleague suggested using rowsum, but that seems to add up all the rows for ALL the columns and not just specified ones. Also, the output doesnt contain the column o...
2018 Mar 15
5
[RFC] llvm-exegesis: Automatic Measurement of Instruction Latency/Uops
...xor eax, ebx`, which emits no uops in the first case (this happens during register renaming, see Agner Fog’s “Register Allocation and Renaming”, in microarchitecture.pdf <http://www.agner.org/optimize/microarchitecture.pdf>). But we found out that this can go further. For example, SHLD64rri8 takes one cycle and runs on P06 in the `shld rax, rax, 0x1` case, but takes 3 cycles and runs on P1 in the `shld rbx, rax, 0x1` case. To the best of our knowledge, this has not yet been described. Future Work - [easy] Fix Intel Scheduling Models. - [easy] Extend to me...
2013 May 10
2
[LLVMdev] LLVM ERROR: Cannot select
Hello, I am new to LLVM and doing some experiment with 3.2 on Ada code. Can anyone help me on the following error message? Thanks, ZY LLVM ERROR: Cannot select: 0xa7a0bf0: f32 = truncate 0xa7a5ea8 [ID=24] 0xa7a5ea8: i32 = X86ISD::SHLD 0xa790280, 0xa790390, 0xa76e088 [ID=22] 0xa790280: i32,ch = load 0xa7386a0, 0xa7a68d8, 0xa7a5628<LD1[%1482+4], anyext from i8> [ID=19] 0xa7a68d8: i32 = add 0xa7a6040, 0xa7a11c8 [ID=15] 0xa7a6040: i32,ch = CopyFromReg 0xa7386a0, 0xa790c98 [ORD=741] [ID=12] 0xa790c98...
2005 May 17
3
Linux integration with AD
Hi All, I extended my AD schema (SFU 3.5) and migrated the users and groups from my NIS domain. The groups migrated from the NIS have the same GID like on the NIS. I added linux machines to my AD domain using windbind, and define on the smb.conf "idmap gid = 10000-20000". I logged in using my AD user account, and when I'm doing "id", I see that all the AD groups
2002 May 29
0
Need help compiling on HPUX 11.00 for 2.2.4
...######### # Makefile.in for Samba - rewritten for autoconf support # Copyright Andrew Tridgell 1992-1998 ########################################################################### prefix=/opt/samba exec_prefix=${prefix} mandir=${prefix}/man sysconfdir=${prefix}/etc LIBS=-lgen -lsec -lnsl CC=gcc SHLD=/usr/bin/ld CFLAGS=-O CPPFLAGS= -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 LDFLAGS= AWK=awk DYNEXP=-Wl,-E TERMLDFLAGS= TERMLIBS= LINK=$(CC) $(FLAGS) $(LDFLAGS) INSTALLCMD=./install-sh -c srcdir=. builddir=/tmp/samba/samba-2.2.4/source top_...
2002 May 28
0
link errors compiling 2.2.4 on HP-UX 11.00
...######### # Makefile.in for Samba - rewritten for autoconf support # Copyright Andrew Tridgell 1992-1998 ########################################################################### prefix=/opt/samba exec_prefix=${prefix} mandir=${prefix}/man sysconfdir=${prefix}/etc LIBS=-lgen -lsec -lnsl CC=gcc SHLD=/usr/bin/ld CFLAGS=-O CPPFLAGS= -D_HPUX_SOURCE -D_POSIX_SOURCE -D_LARGEFILE64_SOURCE -D_ALIGNMENT_REQUIRED=1 -D_MAX_ALIGNMENT=4 LDFLAGS= AWK=awk DYNEXP=-Wl,-E TERMLDFLAGS= TERMLIBS= LINK=$(CC) $(FLAGS) $(LDFLAGS) INSTALLCMD=./install-sh -c srcdir=. builddir=/tmp/samba/samba-2.2.4/source top_...
2018 Mar 15
0
[RFC] llvm-exegesis: Automatic Measurement of Instruction Latency/Uops
...ts no uops in the first case > (this happens during register renaming, see Agner Fog’s “Register > Allocation and Renaming”, in microarchitecture.pdf > <http://www.agner.org/optimize/microarchitecture.pdf>). But we > found out that this can go further. For example, SHLD64rri8takes > one cycle and runs on P06 in the `shld rax, rax, 0x1`case, but > takes 3 cycles and runs on P1 in the `shld rbx, rax, 0x1`case. To > the best of our knowledge, this has not yet been described. > This is great! > > Future Work > > * > >...
2009 Oct 07
2
compile on solaris 64bit, static winbind
...in active directory because of usermanagement on windows 2003 - 64-bit samba because of many many open files - static libraries because of relocation error: R_AMD64_PC32 with shared ones (espacially libwbinfo.so) - non compiling static libwbclient because of shared-libraries-disabled not found (SHLD=shared-libraries-disabled in Makefile) - found comment about different handling on libwbclient (samba distribution) and libtalloc (system os) result is a nearly perfect working environment (even net join ads -w DOMAIN -U Administrator) but non working winbindd so no passwords from AD Could anyo...
2018 Mar 15
3
[RFC] llvm-exegesis: Automatic Measurement of Instruction Latency/Uops
...emits no uops in the first case (this > happens during register renaming, see Agner Fog’s “Register Allocation and > Renaming”, in microarchitecture.pdf > <http://www.agner.org/optimize/microarchitecture.pdf>). But we found > out that this can go further. For example, SHLD64rri8 takes one cycle > and runs on P06 in the `shld rax, rax, 0x1` case, but takes 3 cycles > and runs on P1 in the `shld rbx, rax, 0x1` case. To the best of our > knowledge, this has not yet been described. > > > This is great! > > Future Work > > - >...
2008 Oct 17
0
compile client only
...cc version 2.8.1 ( I think this might be the problem but not sure) Thanks in advance for any help. Configure runs fine, however when i run make i get: error on line 1282 here is part of the Makfile beggining at line 1282 : $(WINBIND_NSS_OBJ) @echo "Linking $@" @$(SHLD) $(WINBIND_NSS_LDSHFLAGS) -o $@ $(WINBIND_NSS_OBJ) \ shared-libraries-disabled`basename $@` : proto_exists $(WINBIND_WINS_NSS_OBJ) @echo "Linking $@" @$(SHLD) $(LDSHFLAGS) -o $@ $(WINBIND_WINS_NSS_OBJ) \ $(LDAP_LIBS) $(KRB5LIBS) $(LIBS) \...
2018 Mar 15
0
[RFC] llvm-exegesis: Automatic Measurement of Instruction Latency/Uops
...ts no uops in the first case > (this happens during register renaming, see Agner Fog’s “Register > Allocation and Renaming”, in microarchitecture.pdf > <http://www.agner.org/optimize/microarchitecture.pdf>). But we > found out that this can go further. For example, SHLD64rri8takes > one cycle and runs on P06 in the `shld rax, rax, 0x1`case, but > takes 3 cycles and runs on P1 in the `shld rbx, rax, 0x1`case. To > the best of our knowledge, this has not yet been described. > > > Future Work > > * > > [easy] Fix Intel...
2010 Jul 21
1
Pittfals Windows 7 and samba 3.3.8 (centos 5.5), LDAP BE - joining domain
...nt with the latest patches, changed the registry settings (2) and tried a domyin join after a reboot. But there is only an error that the user is unknown or the password wrong. AFAIK I'm using the user/password which work with the xp client. What may be the error? Where can I see which user shld be allowed to join? Thanks for any suggestion and best regards, G?tz (1) https://www.centos.org/modules/newbb/viewtopic.php?topic_id=27098&forum=37 (2) http://wiki.samba.org/index.php/Windows7 -- G?tz Reinicke IT-Koordinator Tel. +49 7141 969 420 Fax +49 7141 969 55 420 E-Mail goetz.r...
2002 Oct 26
1
libsmbclient in Mac OS X / Darwin
...AC_DEFINE(STAT_ST_BLOCKSIZE,512) ;; + *darwin*) AC_DEFINE(DARWIN) + BLDSHARED="true" + LDSHFLAGS="-dynamic" + PICFLAG="-fPIC" + SHLD="libtool" + LIBS="${LIBS} -lc -lcc_dynamic" + CFLAGS="-dynamic -fno-common ${CFLAGS}" + ;; *solaris*) AC_DEFINE(SUNOS5) BLDSHARED="true"...
2013 May 11
2
[LLVMdev] LLVM ERROR: Cannot select
.... This caused the code > generator > to abort. What is the original bitcode that caused this? > > Ciao, Duncan. > > >> Thanks, >> ZY >> >> >> LLVM ERROR: Cannot select: 0xa7a0bf0: f32 = truncate 0xa7a5ea8 [ID=24] >> 0xa7a5ea8: i32 = X86ISD::SHLD 0xa790280, 0xa790390, 0xa76e088 [ID=22] >> 0xa790280: i32,ch = load 0xa7386a0, 0xa7a68d8, >> 0xa7a5628<LD1[%1482+4], >> anyext from i8> [ID=19] >> 0xa7a68d8: i32 = add 0xa7a6040, 0xa7a11c8 [ID=15] >> 0xa7a6040: i32,ch = CopyFromReg 0xa7386a0,...
2013 May 11
0
[LLVMdev] LLVM ERROR: Cannot select
...a truncate from an i32 to an f32 is not valid. This caused the code generator to abort. What is the original bitcode that caused this? Ciao, Duncan. > > Thanks, > ZY > > > LLVM ERROR: Cannot select: 0xa7a0bf0: f32 = truncate 0xa7a5ea8 [ID=24] > 0xa7a5ea8: i32 = X86ISD::SHLD 0xa790280, 0xa790390, 0xa76e088 [ID=22] > 0xa790280: i32,ch = load 0xa7386a0, 0xa7a68d8, 0xa7a5628<LD1[%1482+4], > anyext from i8> [ID=19] > 0xa7a68d8: i32 = add 0xa7a6040, 0xa7a11c8 [ID=15] > 0xa7a6040: i32,ch = CopyFromReg 0xa7386a0, 0xa790c98 [ORD=741] [ID=...
2002 May 09
2
Samba 2.2.4 and SCO Openserver 5.0.6
I have problems installing the latest release of Samba on Caldera (SCO) Openserver 5.0.6 I have downloaded the source and ran "./configure" fine. I get an error " line 664: Syntax error " when I run "make". If I run " ./configure --with-winbind", then run "make", I get the error "Compiling smbd/server.c include/includes.h, line 885:error:
2018 Jul 02
2
Rotates, once again
...nt is defined to be modulo and the machine is two's complement. I'm a bit worried that while modulo is the Obviously Right Thing for rotates, the situation is less clear for general funnel shifts. I looked over some of the ISAs I have docs at hand for: - x86 (32b/64b variants) has SHRD/SHLD, so both right and left variants. Count is modulo (mod 32 for 32b instruction variants, mod 64 for 64b instruction variants). As of BMI2, we also get RORX (non-flag-setting ROR) but no ROLX. - ARM AArch64 has EXTR, which is a right funnel shift, but shift distances must be literal constants. E...
2013 May 11
0
[LLVMdev] LLVM ERROR: Cannot select
...ed the code generator > to abort. What is the original bitcode that caused this? > > Ciao, Duncan. > > > Thanks, > ZY > > > LLVM ERROR: Cannot select: 0xa7a0bf0: f32 = truncate 0xa7a5ea8 [ID=24] > 0xa7a5ea8: i32 = X86ISD::SHLD 0xa790280, 0xa790390, 0xa76e088 [ID=22] > 0xa790280: i32,ch = load 0xa7386a0, 0xa7a68d8, 0xa7a5628<LD1[%1482+4], > anyext from i8> [ID=19] > 0xa7a68d8: i32 = add 0xa7a6040, 0xa7a11c8 [ID=15] > 0xa7a6040: i32,ch = CopyFromReg...