search for: with_dc

Displaying 20 results from an estimated 25 matches for "with_dc".

Did you mean: with_dce
2018 Mar 16
3
opt: how to invoke optimizations manually?
Hello, I'd like to measure the impact of optimizations. Trying this (for DCE): * clang -S -emit-llvm test.c * opt -S test.ll > without_dce.ll * opt -S -dce test.ll > with_dce.ll gives without_dce.ll and with_dce.ll having the same content. How can you apply certain optimizations in a specified order? Best, HwJ --- $ cat test.c > int dce(int n) { > if ((n < 0) || (n >= 0)) > return 1; > > return 0; > }
2018 Mar 16
0
opt: how to invoke optimizations manually?
Hi, You should add this option to the first command *"-disable-O0-optnone"* so *clang -Xclang -disable-O0-optnone -emit-llvm -S -o without_dce.ll test.c* then *opt -dce -S < without_dce.ll > with_dce.ll* HTH, Son Tuan Vu On Fri, Mar 16, 2018 at 2:15 PM, HwJ via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Hello, > > I'd like to measure the impact of optimizations. > Trying this (for DCE): > > * clang -S -emit-llvm test.c > * opt -S test.ll > without_dce....
2018 Mar 16
1
opt: how to invoke optimizations manually?
...ohn On 3/16/18 7:30 AM, Son Tuan VU via llvm-dev wrote: > Hi, > > You should add this option to the first command > *"-disable-O0-optnone"* so *clang -Xclang -disable-O0-optnone -emit-llvm > -S -o without_dce.ll test.c* then *opt -dce -S < without_dce.ll > > with_dce.ll* > * > * > HTH, > > Son Tuan Vu > > On Fri, Mar 16, 2018 at 2:15 PM, HwJ via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > > Hello, > > I'd like to measure the impact of optimizations. >...
2017 Feb 21
2
Offical RHEL AD DC on RHEL
...issue on 7.2. In case it's useful, this is the extent of my changes to the spec file: --- samba.spec 2017-01-17 11:21:48.000000000 -0600 +++ samba-dc.spec 2017-01-27 13:58:55.736213036 -0600 @@ -56,8 +56,8 @@ %global libwbc_alternatives_suffix -64 %endif -%global with_mitkrb5 1 -%global with_dc 0 +%global with_mitkrb5 0 +%global with_dc 1 %if %{with testsuite} # The testsuite only works with a full build right now. @@ -78,9 +78,9 @@ Release: %{samba_release} %if 0%{?rhel} -Epoch: 0 +Epoch: 4 %else -Epoch: 2 +Epoch: 4 %endif %if 0...
2017 Feb 20
2
Offical RHEL AD DC on RHEL
...# dnf download --source samba # Fedora > > # Install samba source > rpm -ivh samba-4.*.src.rpm > > # Modify .spec file > sed -i \ > -e 's/%define main_release .*/&.1/' \ > -e 's/%global with_mitkrb5 1/%global with_mitkrb5 0/' \ > -e 's/%global with_dc 0/%global with_dc 1/' \ > /home/lesca/rpmbuild/SPECS/samba.spec > > # samba 4.5.x (Fedora) do also this.... > sed -i \ > -e 's|^%.*libntvfs-samba4.so|# &\n%{_libdir}/samba/bind9/dlz_bind9_11.so\n%{_libdir}/samba/ldb/dsdb_notification.so\n%{_libdir}/samba/ldb/vlv.so|...
2016 May 18
2
smb_set_file_dosmode error: BUG after update to samba4-4.4.2
...http://download.opensuse.org/repositories/network:/samba:/TESTING/openSUSE_13.2 >> >> > Not related to your Problem, but are you sure, that this repo really > provide ad-dc - funktionality?? > > From the spec-file: > "%global with_mitkrb5 1" > "%global with_dc 0" > > "%if ! %with_dc > --without-ad-dc \" > > > > Markus > > It looks like you are right, there is also these lines: %exclude %{_mandir}/man8/samba-tool.8.* %exclude %{_mandir}/man8/samba.8.* It seems the manpages for samba-tool and the 'samba...
2017 Feb 21
0
Offical RHEL AD DC on RHEL
...the extent of my changes to the spec file: > > --- samba.spec 2017-01-17 11:21:48.000000000 -0600 > +++ samba-dc.spec 2017-01-27 13:58:55.736213036 -0600 > @@ -56,8 +56,8 @@ > %global libwbc_alternatives_suffix -64 > %endif > > -%global with_mitkrb5 1 > -%global with_dc 0 > +%global with_mitkrb5 0 > +%global with_dc 1 > > %if %{with testsuite} > # The testsuite only works with a full build right now. > @@ -78,9 +78,9 @@ > Release: %{samba_release} > > %if 0%{?rhel} > -Epoch: 0 > +Epoch: 4 > %else &g...
2018 Apr 19
0
opt: how to invoke optimizations manually?
...7:30 AM, Son Tuan VU via llvm-dev wrote: >>Hi, >> >>You should add this option to the first command >>*"-disable-O0-optnone"* so *clang -Xclang -disable-O0-optnone >>-emit-llvm -S -o without_dce.ll test.c* then *opt -dce -S < >>without_dce.ll > with_dce.ll* >>* >>* >>HTH, >> >>Son Tuan Vu >> >>On Fri, Mar 16, 2018 at 2:15 PM, HwJ via llvm-dev >><llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: >> >> Hello, >> >> I'd like to measure...
2016 Aug 01
1
Heimdal Kerberos in Samba4
updating Fedora-rawhide this morning I see 4.5.0rc1 has arrived. And still no samba-tool so I looked at installing from source with dnf download --source samba rpm -i samba*src.rpm looking at the spec file I see a section %if ! %with_dc --without-ad-dc \ %endif How do I tell rpmbuild with_dc? On Mon, Aug 1, 2016 at 8:27 AM, mathias dufresne <infractory at gmail.com> wrote: > As we wanted to test last Samba version we had to compile Samba manually > once 4.3.0 went out. > As we wanted to continue to dep...
2017 Feb 19
3
Offical RHEL AD DC on RHEL
On Sat, 2017-02-18 at 19:47 -0500, Nico Kadel-Garcia wrote: > On Sat, Feb 18, 2017 at 12:58 PM, Andrew Bartlett via samba > <samba at lists.samba.org> wrote: > > On Sat, 2017-02-18 at 10:36 +0100, Dario Lesca via samba wrote: > > > > > > Centos [6,7]* however does not have into current samba 4.x > > > version > > > fully support to AD DC
2016 May 18
3
smb_set_file_dosmode error: BUG after update to samba4-4.4.2
We are using samba4 as an AD controller under OpenSuSE 13.2 using the repository at: http://download.opensuse.org/repositories/network:/samba:/TESTING/openSUSE_13.2 After an update to Version 4.4.2, we began getting error from our CAD program (SolidWorks). This happens under both Windows 7 and Windows 10. The messages in the Samba log file are: [2016/05/17 10:49:02.822522, 2]
2013 Feb 22
2
RPM building tools for Samba 4.0.3 on RHEL 6 published bye me on Github
I've been spending some time backporting Samba 4.0.3 from Fedora 19 to RHEL 6, partly as proof of concept, partly to make it available to others. I've published my work at: https://github.com/nkadel/samba4repo/ The key RPM building tools are at: https://github.com/nkadel/samba-4.0.3-srpm/ And there are dependencies listed for libtalloc, libtevent,
2016 Aug 27
0
Samba DC NT4 Style is Gone. When AD-DC will enable for default into Centos/RedHat Samba4 packages?
...ble, into Samba 4 Centos package by default support to AD-DC mode, or release another renamed packages with AD-DC support enable. For now, I must download the samba.src rpm, modify the spec file > sed \ > -e 's/%global with_mitkrb5 1/%global with_mitkrb5 0/' \ > -e 's/%global with_dc 0/%global with_dc 1/' \ > ~/rpmbuild/SPECS/samba.spec then rebuild the package after all update. My question is: There is some hope that in the short this flags are enable by default? Many thanks for your reply -- Dario Lesca (inviato dal mio Linux Fedora 24 Workstation)
2016 May 19
0
smb_set_file_dosmode error: BUG after update to samba4-4.4.2
...ositories/network:/samba:/TESTING/openSUS > >> E_13.2> > > Not related to your Problem, but are you sure, that this repo really > > provide ad-dc - funktionality?? > > > > From the spec-file: > > "%global with_mitkrb5 1" > > "%global with_dc 0" > > > > "%if ! %with_dc > > > > --without-ad-dc \" > > > > Markus > > It looks like you are right, there is also these lines: > > %exclude %{_mandir}/man8/samba-tool.8.* > %exclude %{_mandir}/man8/samba.8.* > > It...
2017 Feb 20
0
Offical RHEL AD DC on RHEL
...# Install samba source > > rpm -ivh samba-4.*.src.rpm > > > > # Modify .spec file > > sed -i \ > > -e 's/%define main_release .*/&.1/' \ > > -e 's/%global with_mitkrb5 1/%global with_mitkrb5 0/' \ > > -e 's/%global with_dc 0/%global with_dc 1/' \ > > /home/lesca/rpmbuild/SPECS/samba.spec > > > > # samba 4.5.x (Fedora) do also this.... > > sed -i \ > > -e 's|^%.*libntvfs-samba4.so|# &\n%{_libdir}/samba/bind9/dlz_ > bind9_11.so\n%{_libdir}/samba/ldb/dsdb_notifica...
2013 Mar 11
0
Updates to RHEL 6 compatible backport of Samba 4.0.3, with domain controller activated
...ed a new job that doesn't need domain controllers, and I don't have a stack of spare Windows licensed hosts to test with. * Bundle updated versions of libtalloc, libldb, libtevent, etc. for RHEL 6. * Restore SysV init scripts (Fedora rawhide relies exclusively on systemd.) * Activate "with_dc" to compile with the domain controller. * Include a stack of libraries for the "samba-dc-libs" toolsuite. * Clean up the dependencies for with_dc and with_mitkrb5. * Make clear that the "with_talloc", "with_tevent", etc. flags actually mean "with_internal_tal...
2016 May 18
0
smb_set_file_dosmode error: BUG after update to samba4-4.4.2
...the > repository at: > > http://download.opensuse.org/repositories/network:/samba:/TESTING/openSUSE_13.2 > > Not related to your Problem, but are you sure, that this repo really provide ad-dc - funktionality?? >From the spec-file: "%global with_mitkrb5 1" "%global with_dc 0" "%if ! %with_dc --without-ad-dc \" Markus > After an update to Version 4.4.2, we began getting error from our CAD > program (SolidWorks). This happens under both Windows 7 and Windows 10. > > The messages in the Samba log file are: > > [2016/05/17 10:49:...
2018 Dec 11
2
RHEL7/Centos7 with Samba AD
On Mon, 2018-12-10 at 20:53 -0500, Nico Kadel-Garcia wrote: > > I actually hope that the "--with-experimental-ad-dc" option will work > well, as it seems to in Fedora 29. I'm not holding my breath for it. I'm sorry if my hints have not been strong enough:   PLEASE DO NOT BUILD RPMS OF SAMBA WITH THIS SET. Your end users don't know we lack security support for
2019 Apr 08
3
Samba 4.8.10 for rhel7/centos7 rpms
...Perhaps it is just a matter of RedHat's backports. Any >>> specific >>> CVE's ? >> >> All what I know, is just a requirement from ./configure when you >> enable >> -ad option IIRC . ./configure requires gnutls-3.4.7 [1] > > whe we use %global with_dc 1 we need gnutls-3.4.7 > >> >> [1] >> BUILDSTDERR: Checking for program krb5-config.heimdal >> : not found >> >> BUILDSTDERR: Checking for program krb5-config >> :...
2019 Apr 08
6
Samba 4.8.10 for rhel7/centos7 rpms
On Sun, 2019-04-07 at 12:38 -0400, vincent at cojot.name wrote: > On Sat, 6 Apr 2019, Sérgio Basto via samba wrote: > > > > http://nova.polymtl.ca/~coyote/dist/samba/samba-4.8.10 > > > > How do you build this on Centos 7 without gnutls 3.4 and nettle 3.2 > > ? > > Hi Sergio, > that's a very good question. I built these on rhrl7.6 with gnutls- >