search for: p_tmpdir

Displaying 7 results from an estimated 7 matches for "p_tmpdir".

Did you mean: sa_tmpdir
2014 Jul 23
2
[LLVMdev] sys::path::system_temp_directory vs. sys::fs::createTemporaryFile
...fs::createTemporaryFile does not use llvm::sys::path::system_temp_directory, instead relying on its platform-specific helper TempFile. Is there any reason for this disparity? The two implementations are not in sync, either: - TempDir honors TMPDIR, TMP, TEMP, TEMPDIR, and a configuration-settable P_tmpdir on Unix-y systems. system_temp_directory just honors TMPDIR. - TempDir calls ::GetTempPathW on Windows, while system_temp_directory honors TEMP and falls back to C:\\TEMP. - system_temp_directory prefers DARWIN_USER_TEMP_DIR on Darwin. - system_temp_directory has an option for "temporary direc...
2016 Mar 24
0
Changing temp Dir: /var/tmp
Hi, LLVM will look for the following environment variables to be set, and if not it will use /var/tmp: TMPDIR, TMP, TEMP, TEMPDIR You should be able to override its behaviour by setting one of those. Cheers, James On Thu, 24 Mar 2016 at 11:21 Ramakrishna Mallireddy via llvm-dev < llvm-dev at lists.llvm.org> wrote: > What are the various option we have in setting tmp dir. > >
2018 Nov 09
0
Re: Further nbdkit patches for Haiku
...t; the iconv dependency optional. Can you let me know if this works on > Haiku or if I broke anything? Seems to work. > The final patch was: > > https://github.com/mmuman/nbdkit/commit/50ee315525258b0defae06f6e29da841ddc42b58 > build: avoid hardcoding /var/tmp by default, use P_tmpdir > > Unfortunately this won't work well on some Linux systems which use the > /tmp-on-tmpdir misfeature. On these systems, /tmp has only a small, > limited amount of space and is backed by memory, and we must use > /var/tmp for large files. I don't know how to fix this. Pe...
2016 Mar 24
2
Changing temp Dir: /var/tmp
What are the various option we have in setting tmp dir. I can't use the default var/tmp, and I am looking to pass the dir during compiler invocation as an arg. any help is great. Thanks Ramakrishna -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160324/263cba7a/attachment.html>
2014 Jul 25
2
[LLVMdev] sys::path::system_temp_directory vs. sys::fs::createTemporaryFile
...path::system_temp_directory, instead relying on its > platform-specific helper TempFile. Is there any reason for this disparity? > > > > The two implementations are not in sync, either: > > > > - TempDir honors TMPDIR, TMP, TEMP, TEMPDIR, and a > configuration-settable P_tmpdir on Unix-y systems. system_temp_directory > just honors TMPDIR. > > - TempDir calls ::GetTempPathW on Windows, while system_temp_directory > honors TEMP and falls back to C:\\TEMP. > > - system_temp_directory prefers DARWIN_USER_TEMP_DIR on Darwin. > > - system_temp_directory...
2018 Nov 06
5
Further nbdkit patches for Haiku
...odified your patch (see attachment) to make the iconv dependency optional. Can you let me know if this works on Haiku or if I broke anything? The final patch was: https://github.com/mmuman/nbdkit/commit/50ee315525258b0defae06f6e29da841ddc42b58 build: avoid hardcoding /var/tmp by default, use P_tmpdir Unfortunately this won't work well on some Linux systems which use the /tmp-on-tmpdir misfeature. On these systems, /tmp has only a small, limited amount of space and is backed by memory, and we must use /var/tmp for large files. I don't know how to fix this. Perhaps a simple: AS_CASE(...
2010 Jul 05
5
[PATCH 0/3] RFC: Allow use of external QEMU process with libguestfs
This attempts to implement the idea proposed in https://www.redhat.com/archives/libguestfs/2010-April/msg00087.html The idea is that an externally managed QEMU (manual, or via libvirt) can boot the appliance kernel/initrd. libguestfs can then be just told of the UNIX domain socket associated with the guest daemon. An example based on guestfish. 1. Step one, find the appliance kernel/initrd