digitalmars.D.ldc - Temporary files for `-run`
- Johan Engelen (11/11) Apr 30 2016 I think at the moment "ldc2 -run program.d" cannot be run
- Joakim (3/14) Apr 30 2016 Yes, that's the way it should be, makes no sense not to randomize
- Johan Engelen (7/23) Apr 30 2016 Already working on the PR!
- Joakim (2/16) Apr 30 2016 If you prefix runTemp before the random string, it'll help.
- David Nadlinger via digitalmars-d-ldc (4/11) Apr 30 2016 You could also go for a random directory name inside the system temp
- Johan Engelen (5/6) Apr 30 2016 What I meant is that, with my current implementation, you will no
- Johan Engelen (3/5) Apr 30 2016 Fixed that.
I think at the moment "ldc2 -run program.d" cannot be run multiple times in parallel (I hit this issue while writing some lit-based tests). LDC will generate the same temporary files for each parallel run and will delete them, resulting in strange problems when different processes are deleting/accessing the files in an unfortunate sequence. My question to you: does it make sense to work on a PR to generate "random" obj+exe filenames for "-run" ? cheers, Johan
Apr 30 2016
On Saturday, 30 April 2016 at 09:09:07 UTC, Johan Engelen wrote:I think at the moment "ldc2 -run program.d" cannot be run multiple times in parallel (I hit this issue while writing some lit-based tests). LDC will generate the same temporary files for each parallel run and will delete them, resulting in strange problems when different processes are deleting/accessing the files in an unfortunate sequence. My question to you: does it make sense to work on a PR to generate "random" obj+exe filenames for "-run" ? cheers, JohanYes, that's the way it should be, makes no sense not to randomize that way for single runs.
Apr 30 2016
On Saturday, 30 April 2016 at 16:42:01 UTC, Joakim wrote:On Saturday, 30 April 2016 at 09:09:07 UTC, Johan Engelen wrote:Already working on the PR! But... linker errors will show the temporary filenames. I was thinking about creating a random temporary folder but then the problem is that I have to add logic to delete that folder after execution... Is it OK if linker errors will show funny filenames? (aren't linker errors supposed to be incomprehensible? ;-))I think at the moment "ldc2 -run program.d" cannot be run multiple times in parallel (I hit this issue while writing some lit-based tests). LDC will generate the same temporary files for each parallel run and will delete them, resulting in strange problems when different processes are deleting/accessing the files in an unfortunate sequence. My question to you: does it make sense to work on a PR to generate "random" obj+exe filenames for "-run" ? cheers, JohanYes, that's the way it should be, makes no sense not to randomize that way for single runs.
Apr 30 2016
On Saturday, 30 April 2016 at 16:59:30 UTC, Johan Engelen wrote:On Saturday, 30 April 2016 at 16:42:01 UTC, Joakim wrote:If you prefix runTemp before the random string, it'll help.On Saturday, 30 April 2016 at 09:09:07 UTC, Johan Engelen wrote:Already working on the PR! But... linker errors will show the temporary filenames. I was thinking about creating a random temporary folder but then the problem is that I have to add logic to delete that folder after execution... Is it OK if linker errors will show funny filenames? (aren't linker errors supposed to be incomprehensible? ;-))[...]Yes, that's the way it should be, makes no sense not to randomize that way for single runs.
Apr 30 2016
On 30 Apr 2016, at 18:43, Joakim via digitalmars-d-ldc wrote:On Saturday, 30 April 2016 at 16:59:30 UTC, Johan Engelen wrote:You could also go for a random directory name inside the system temp path, where people pretty much expect "funny names". — DavidBut... linker errors will show the temporary filenames. I was thinking about creating a random temporary folder but then the problem is that I have to add logic to delete that folder after execution... Is it OK if linker errors will show funny filenames? (aren't linker errors supposed to be incomprehensible? ;-))If you prefix runTemp before the random string, it'll help.
Apr 30 2016
On Saturday, 30 April 2016 at 16:59:30 UTC, Johan Engelen wrote:Is it OK if linker errors will show funny filenames?What I meant is that, with my current implementation, you will no longer be able to see which source file has an unresolved symbol (say), because the object name will be "tmp_09AB4512.o". It's more a case of lazyness of the implementer, I think...
Apr 30 2016
On Saturday, 30 April 2016 at 18:43:47 UTC, Johan Engelen wrote:It's more a case of lazyness of the implementerFixed that. https://github.com/ldc-developers/ldc/pull/1470
Apr 30 2016