search for: thost

Displaying 20 results from an estimated 53 matches for "thost".

Did you mean: host
2004 Aug 31
1
[PATCH] supporting a remote scp path option in scp
...errs = 1; } } + xfree(rscpcmd); exit(errs != 0); } @@ -383,7 +398,7 @@ len = strlen(ssh_program) + strlen(argv[i]) + strlen(src) + (tuser ? strlen(tuser) : 0) + strlen(thost) + strlen(targ) + - strlen(ssh_options) + CMDNEEDS + 20; + strlen(ssh_options) + strlen(rscpcmd) + 20; bp = xmalloc(len); if (host) { *host++ = 0; @@ -403,7 +418,7 @@...
2018 Sep 19
2
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...2.19.0 (latest, x64) Python 2.7.2 (x86) directory structure test   llvm <-- git clone https://github.com/llvm-mirror/llvm     tools       clang <-- git clone https://github.com/llvm-mirror/clang   llvm_build Debug build: clean build, llvm_build is deleted before llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1 -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm builds for hours, a few warning, no errors -> llvm_build is ~44GB i can find many wo...
2018 Sep 19
4
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...structure > > test > llvm <-- git clone https://github.com/llvm-mirror/llvm > tools > clang <-- git clone https://github.com/llvm-mirror/clang > llvm_build > > Debug build: clean build, llvm_build is deleted before > > llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64" > -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host > -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1 > -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm > > builds for hours, a few warning, no errors -> llvm_build is ~44G...
2000 Dec 12
1
scp and filenames with weird characters
...0% |*****************************************| 0 --:-- ETA Although the simplest is to patch the sourcecode: (A patchfile for the CVS-version is included, but these fixes should work for any 2.2.0-version (as the one in Debian woody) as far as I can see) in scp.c: - strlen(thost) + strlen(targ) + CMDNEEDS + 32; + strlen(thost) + strlen(targ) + CMDNEEDS + 40; - "%s%s -x -o'FallBackToRsh no' -n -l %s %s %s %s '%s%s%s:%s'", + "%s%s -x -o'FallBackToRsh no' -n -l \"%s\" \"%s\" \"%s\"\&quot...
2000 Oct 11
2
scp -L option
...tf(bp, ! "%s%s -x -o'FallBackToRsh no' -n -l %s %s %s %s '%s%s%s:%s'", ssh_program, verbose_mode ? " -v" : "", suser, host, cmd, src, tuser ? tuser : "", tuser ? "@" : "", thost, targ); } else { host = cleanhostname(argv[i]); (void) sprintf(bp, ! "exec %s%s -x -o'FallBackToRsh no' -n %s %s %s '%s%s%s:%s'", ssh_program, verbose_mode ? " -v" : "", host, cmd, src, tuser ? t...
2018 Sep 17
2
build llvm fails under win7 x64/VS2017
...produces these errors and warnings while building CMake Warning at CMakeLists.txt:29 (message):   Visual Studio generators use the x86 host compiler by default, even for   64-bit targets.  This can result in linker instability and out of memory   errors.  To use the 64-bit host compiler, pass -Thost=x64 on the CMake   command line. ... CMake Warning (dev) at utils/benchmark/CMakeLists.txt:3 (project):   Policy CMP0048 is not set: project() command manages VERSION variables.   Run "cmake --help-policy CMP0048" for policy details.  Use the cmake_policy   command to set the policy...
2000 Aug 12
0
[PATCH] scp -S support
...targetshouldbedirectory = 1; @@ -388,7 +394,7 @@ if (*src == 0) src = "."; host = strchr(argv[i], '@'); - len = strlen(SSH_PROGRAM) + strlen(argv[i]) + + len = strlen(ssh_program) + strlen(argv[i]) + strlen(src) + (tuser ? strlen(tuser) : 0) + strlen(thost) + strlen(targ) + CMDNEEDS + 32; bp = xmalloc(len); @@ -402,7 +408,7 @@ continue; (void) sprintf(bp, "%s%s -x -o'FallBackToRsh no' -n -l %s %s %s %s '%s%s%s:%s'", - SSH_PROGRAM, verbose_mode ? " -v" : "", +...
2017 Jun 05
1
Re: why increasing vCPUs increasing the CPU sockets for QEMU+KVM
...Us will be floating arbitrarily across any >>host physical CPUs. So trying to match host / guest topology is not only >>useless, it might actually degrade your performance - eg if you give the >>guest 1 socket, 1 core and 2 threads, but he vCPUs get scheduled on different >>thost sockets, the guest OS will make very bad decisions. The above is true, only if the the host have multiple sockets. As long as the host has single socket, there will not be any performance degradation right? >>If you are willing, however, to assign dedicated host CPUs to each guest >>C...
2018 Sep 19
2
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...b.com/llvm-mirror/llvm > > > tools > > > clang <-- git clone https://github.com/llvm-mirror/clang > > > llvm_build > > > > > > Debug build: clean build, llvm_build is deleted before > > > > > > llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64" > > > -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host > > > -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1 > > > -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm > > > > > > builds for hours,...
2018 Nov 26
3
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
...AM To: Osman Zakir Cc: llvm-dev at lists.llvm.org Subject: Re: [llvm-dev] Have LLD and Clang in their correct locations, but still can't generate project files for LLVM I don't know if it actually matters, but I think there should not be a space after -T. Usually I would specify it like -Thost=x64. On Mon, Nov 26, 2018 at 8:53 AM Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: I ran CMake on the command line with this command: " cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual Studio 15 2017 Win64...
2017 Jun 05
2
why increasing vCPUs increasing the CPU sockets for QEMU+KVM
Hi All, I am new here, please warn me If I am not following proper etiquette of this mailing list. I am breaking my head, regarding why libvirt is defining multiple CPU sockets when I increase the vCPU count. As and when I increase the vCPU count in libvirt guest XML, it is increasing the CPU sockets in qemu instance. " -smp 4,sockets=4,cores=1,threads=1 " instead " -smp
2018 May 16
2
Windows build strangeness
...ld issue? I made my nightly script check for errors and run the second round, because it has been happening so consistently, but a proper build system shouldn't require such a workaround. For reference, I generated the sln/project files like this: cmake -G "Visual Studio 14 Win64" -Thost=x64 ^ -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_OPTIMIZED_TABLEGEN=ON ^ -DLLVM_ENABLE_PROJECTS="llvm;clang;clang-tools-extra" ^ ..\llvm-project\llvm (Yes I know the optimized tablegen comes from a separate tree, that's built separately and always works. It's just the main build t...
2000 Jul 07
0
Patch to add scp -L option
...%s '%s%s%s:%s'", SSH_PROGRAM, verbose_mode ? " -v" : "", + nonprivilaged_port ? " -P" : "", suser, host, cmd, src, tuser ? tuser : "", tuser ? "@" : "", thost, targ); } else { host = cleanhostname(argv[i]); (void) sprintf(bp, - "exec %s%s -x -o'FallBackToRsh no' -n %s %s %s '%s%s%s:%s'", + "exec %s%s%s -x -o'FallBackToRsh no' -n %s %s %s '%s%s%s:%s'", SSH...
2019 Oct 28
2
How to Switch to Static Runtime and Enable C++ Exceptions?
Hi. I'm trying to build LLVM 10.0.0 with CMake on the command line (Developer Command Prompt for VS2019) and I need to know how to switch to a static runtime. I've tried setting LLVM's variable for this, but it didn't work. I still have a dynamic runtime. Along with that, I also need to know how to enable C++ exceptions. One thing I tried was to do
2018 Nov 26
2
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
I ran CMake on the command line with this command: " cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual Studio 15 2017 Win64" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly " And I have LLD and Clang where they should be. But I still couldn't generate project files. The path to the build and installation directories don't have spaces at all this
2019 Oct 30
2
Recent LLVM Build Attempt -- obj.ClangAST.vcxproj Failed to Build
I configured with this command: " cmake ../llvm -G"Visual Studio 16 2019" -A Win32 -Thost=x64 -DLLVM_ENABLE_EH=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_CRT_RELEASE=MT -DLLVM_ENABLE_RTTI=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;libcxx;libcxxabi" -DCMAKE_CXX_FLAGS="/permissive- /D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS" -DCMAKE_CXX_STANDARD=17 " and...
2018 Nov 23
2
Couldn't successfully generate project files for LLVM (checked out from trunk)
...to build it from source and added the "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly". I'm not trying to ask for help on targeting WebAssembly, though, but only on building LLVM from source. For now it's specifically generating Visual Studio 2017 project files. I added the -Thost=x64 flag to CMake as well, but it still seemed to target x86. Why? Anyway, please help. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20181123/7b758678/attachment-0001.html> -------------- next part ----...
2018 May 16
1
Windows build strangeness
...script check for errors and run the second round, > because it has been happening so consistently, but a proper build > system shouldn't require such a workaround. > > For reference, I generated the sln/project files like this: > > cmake -G "Visual Studio 14 Win64" -Thost=x64 ^ > -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_OPTIMIZED_TABLEGEN=ON ^ > -DLLVM_ENABLE_PROJECTS="llvm;clang;clang-tools-extra" ^ > ..\llvm-project\llvm > > (Yes I know the optimized tablegen comes from a separate tree, > that's built separately and always works. I...
2012 Aug 19
3
Bug Report and patch fix
...gc, char **argv) @@ -551,6 +552,18 @@ } void +verifypath(char *file) +{ + if (access(file, F_OK) == -1) + { + errno = ENOENT; + run_err("%s: %s",file,strerror(errno)); + killchild(0); + } +} + + +void toremote(char *targ, int argc, char **argv) { char *bp, *host, *src, *suser, *thost, *tuser, *arg; @@ -656,6 +669,7 @@ if (remin == -1) { xasprintf(&bp, "%s -t %s%s", cmd, *targ == '-' ? "-- " : "", targ); + verifypath(argv[i]);/*added to check for the local existence of file before trying to do anything*/ host =...
2019 Jun 10
3
please confirm: sssd not a good idea :)
On 10/06/2019 16:04, vincent at cojot.name wrote: > > There is probably some amount of redtape on this but AFAIK it works > fine for me: My RHEL7.6 hypervisors are joined to my AD DC 4.10.4 VMs > through use of realm '(and thus sssd): > > Here's a RHEL7.6 client: > # realm list > ad.lasthome.solace.krynn > ? type: kerberos > ? realm-name: