13 lines
406 B
Diff
13 lines
406 B
Diff
--- dmd/compiler/src/dmd/link.d
|
|
+++ dmd/compiler/src/dmd/link.d
|
|
@@ -759,8 +759,7 @@
|
|
perror("unable to create pipe to linker");
|
|
return -1;
|
|
}
|
|
- // vfork instead of fork to avoid https://issues.dlang.org/show_bug.cgi?id=21089
|
|
- childpid = vfork();
|
|
+ childpid = fork();
|
|
if (childpid == 0)
|
|
{
|
|
// pipe linker stderr to fds[0]
|