search for: extra_opt

Displaying 20 results from an estimated 32 matches for "extra_opt".

Did you mean: extra_opts
2002 Mar 08
2
preferred key exchange methods
is there a way of specifying preferred key exchange methods on client end with OpenSSL 3.1 using ssh2? i'm trying to determine which key exchange method is actually being used for a connection but i'm i bit confused by the debug messages: ... debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-cbc hmac-md5 none debug1: kex:
2009 May 08
2
[LLVMdev] Darwin option processing
...e found that: Index: Makefile.rules =================================================================== --- Makefile.rules (revision 71041) +++ Makefile.rules (working copy) @@ -472,6 +476,9 @@ ifneq ($(DARWIN_MAJVERS),4) LD.Flags += $(RPATH) -Wl,$(LibDir) endif + ifeq ($(OS),Darwin) + EXTRA_OPTIONS := $(filter-out -mdynamic-no-pic,$(EXTRA_OPTIONS)) + endif endif ifdef TOOL_VERBOSE can be used to strip the option out in the places it won't work. This mirrors the style used in other parts of the file. If the experiment goes well, I'd like to check this in, if no object...
2011 Mar 02
4
networkinterface type proposal
...e # shows there is a need to pass arbitrary provider-specific args # i.e. the RH sysvinit provider would turn " " to \n and # drop these into the network-scripts file. # This particular option enables ''/dev/vlan201'' instead of ''/dev/eth0.201'' extra_opts => "VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD PEERDNS=NO PEERNTP=NO" } ### bonding example - master interface with two slaves networkinterface { "bond0": ensure => "enabled", ipaddress => "10.0.0.4", netmask => "255.255.255.0&...
2009 May 08
0
[LLVMdev] Darwin option processing
...=================================================================== > --- Makefile.rules (revision 71041) > +++ Makefile.rules (working copy) > @@ -472,6 +476,9 @@ > ifneq ($(DARWIN_MAJVERS),4) > LD.Flags += $(RPATH) -Wl,$(LibDir) > endif > + ifeq ($(OS),Darwin) > + EXTRA_OPTIONS := $(filter-out -mdynamic-no-pic,$(EXTRA_OPTIONS)) > + endif > endif > > ifdef TOOL_VERBOSE > > > can be used to strip the option out in the places it won't work. This > mirrors the style used in other parts of the file. If the experiment > goes well, I'd...
2012 Mar 08
3
[PATCH 0/3] kinit: Allow mount options
This patch series allows user-specified mount commands to be sent in via kernel command line ("kinit_mount=...") or via an embedded /etc/fstab file. The first patch is a cleanup of a patch sent last November by San Mehat (http://web.archiveorange.com/archive/v/EazJNBMORV2U7E0coh5h); the next two are small improvements or bug fixes.
2012 May 01
0
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...Tue, 2012-05-01 at 16:06 -0500, Hal Finkel wrote: > LLVM/clang now will build in the normal way (./configure; make install) > on PPC (you'll need at least the 3.1 release candidate (or trunk)). I > generally build on my PPC64 hosts with: > make ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O2 EXTRA_OPTIONS=-mminimal-toc Ok, it built fine, but what is the llvm equivalent of gcc's -m32 -m64? Google doesn't seem to be much help, nor is the clang --help output. Peter
2012 May 01
2
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...> you had to use llvm-gcc thingy. Is that not the case anymore? LLVM/clang now will build in the normal way (./configure; make install) on PPC (you'll need at least the 3.1 release candidate (or trunk)). I generally build on my PPC64 hosts with: make ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O2 EXTRA_OPTIONS=-mminimal-toc Thanks again, Hal > > Peter > > > > -- Hal Finkel Postdoctoral Appointee Leadership Computing Facility Argonne National Laboratory
2009 Feb 10
0
[LLVMdev] Building 64-bit libraries on OS X
To build 64-bit libraries (i.e. 'file <library>' shows x86_64) try 'make EXTRA_OPTIONS=-m64" Either 32-bit or 64-bit libraries are able to generate code for either 32-bit or 64-bit, try -m32 or -m64 at runtime On Feb 9, 2009, at 4:16 PMPST, Jan Rehders wrote: > Hi, > > how do I compile LLVM for 64-bit on OS X? I want to get 64-bit > libraries which generate...
2009 May 08
2
[LLVMdev] Darwin option processing
...+ ifeq ($(OS),Darwin) + DynamicNoPic := -mdynamic-no-pic + endif + endif + endif # Darwin requires -fstrict-aliasing to be explicitly enabled. # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues @@ -252,8 +259,8 @@ #ifeq ($(OS),Darwin) # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing #endif - CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) - C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) + CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) $(DynamicNoPic) + C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) $(Dynamic...
2009 Feb 16
1
[LLVMdev] Invalid call generated on 64-bit linux when calling native C function from IR
...rently using EE->addGlobalMapping to register the native functions. This appears to be nessecary because the native functions will be part of a .so/.dylib so the jit will not find them using dlsym on linux and we would prefer to stripp all symbols. I'm using LLVM 2.4, which I compiled using EXTRA_OPTIONS="-m64/-m32 -fPIC". Below you can see the code generated by the jit on different platforms. On 64-bit linux the 'call' instruction uses a completely wrong address. This invalid address appears to be related to the address of the call instruction itself (e.g. it is always a ...
2009 Feb 10
2
[LLVMdev] Building 64-bit libraries on OS X
Hi, how do I compile LLVM for 64-bit on OS X? I want to get 64-bit libraries which generate x86_64 to link them into a 64-bit application. All my attempts ended up with either 32-bit libraries or errors. My machine is an Intel Xeon quad core, 'sysctl hw.cpu64bit_capable' returns 1 so I think the machine is fine. - './configure && make' yields 32-bit libraries and
2012 May 01
4
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
..., Hal Finkel wrote: > > LLVM/clang now will build in the normal way (./configure; make > > install) on PPC (you'll need at least the 3.1 release candidate (or > > trunk)). I generally build on my PPC64 hosts with: > > make ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O2 > > EXTRA_OPTIONS=-mminimal-toc > > Ok, it built fine, but what is the llvm equivalent of gcc's -m32 -m64? > Google doesn't seem to be much help, nor is the clang --help output. Noted, we should fix that as well. By default it should build for whatever the current host is (no special flags req...
2017 May 12
3
samba-ad restart fails occasionally
Hi, We are running sernet samba, and on one particular DC (debian 7.11, samba 4.5.6), when logrotate is ready rotating, "sernet-samba-ad restart" fails with: > Shutting down SAMBA AD services : ...trying once more ... (warning). > ...trying once more ... (warning). ..... > ...trying once more ... (warning). > Error: /usr/sbin/samba still running with PID=14755 from
2008 Jul 28
5
Hardware serial number access from (a) command(s)
Over the weekend, I had to make a technical support call on one of my DVD burners, and at one point the recorded message mentioned I should have my serial number handy. I thought there was a way to read that from at least one piece of software on the system, but I couldn't remember one and man -k on a number of subjects was unrevealing. Can someone enlighten me (us)? Thanks. mhr
2007 Mar 30
3
still unable to add new nodes?
I updated to 0.22.3-1 from the dlutter repo (CentOS 4.4) and I''m still having trouble adding new nodes as others saw from the previous version, though I believe the error is different now. The procedure I used was: <client> /etc/init.d/puppet once -v <server> /usr/sbin/puppetca --sign nodename <client> /etc/init.d/puppet once -v This used to work for new nodes, now I
2016 Jan 06
0
[klibc:master] mount: Implement -o defaults
..._opts.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/usr/utils/mount_opts.c b/usr/utils/mount_opts.c index 05d1729..bb26c7d 100644 --- a/usr/utils/mount_opts.c +++ b/usr/utils/mount_opts.c @@ -89,8 +89,13 @@ parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra) break; } - if (res != 0 && s[0]) - add_extra_option(extra, opt); + if (res != 0 && s[0]) { + if (!strcmp(opt, "defaults")) + rwflag &= ~(MS_RDONLY|MS_NOSUID|MS_NODEV| + MS_NOEXEC|MS_SYNCHRONOUS); + else + add_extra_option(extra,...
2008 Jul 31
0
[LLVMdev] [Patch] Ocaml fix for g++ 4.2
...lc to use "gcc -lstdc++" instead of the g++ compiler. Cheers, Erik Index: test/Makefile =================================================================== --- test/Makefile (revision 54250) +++ test/Makefile (working copy) @@ -102,7 +102,7 @@ @echo 'set llvmgxx "$(LLVMGCC) $(EXTRA_OPTIONS)"' >> site.tmp @echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp @echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp - @echo 'set ocamlc "$(OCAMLC) -cc $(CXX) -I $(LibDir)/ocaml"' >> site.tmp + @echo...
2009 May 08
0
[LLVMdev] Darwin option processing
...setting can be either -fpic, -mdynamic-no-pic, or empty. -Chris > > > # Darwin requires -fstrict-aliasing to be explicitly enabled. > # Avoid -fstrict-aliasing on Darwin for now, there are unresolved > issues > @@ -252,8 +259,8 @@ > #ifeq ($(OS),Darwin) > # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing > #endif > - CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) > - C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) > + CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) $(DynamicNoPic) > + C.Flags += $(OPTIMIZE_OPTION) $(Omi...
2011 Dec 03
1
[LLVMdev] New strict-aliasing warning?
When compiling trunk using gcc 4.1.2 on linux/ppc64, I now see a warning that I don't remember seeing previously: llvm[2]: Compiling InlineSpiller.cpp for Release+Asserts build /src/llvm-trunk-dev/include/llvm/ADT/PointerIntPair.h: In member function ‘const PointerTy* llvm::PointerIntPair<PointerTy, IntBits, IntType, PtrTraits>::getAddrOfPointer() const [with PointerTy = void*, unsigned
2008 Sep 05
0
initial mntent.h, mount features, ipconfig fixes
...c @@ -7,9 +7,13 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <mntent.h> #include "mount_opts.h" +#define _PATH_MOUNTED "/etc/mtab" +#define _PATH_PROC_MOUNTS "/proc/mounts" + char *progname; static struct extra_opts extra; @@ -22,6 +26,31 @@ static __noreturn usage(void) exit(1); } +static __noreturn print_mount(void) +{ + FILE *mfp; + struct mntent *mnt; + + mfp = setmntent(_PATH_MOUNTED, "r"); + if (!mfp) + mfp = setmntent(_PATH_PROC_MOUNTS, "r"); + if (!mfp) + perror("setmnt...