490980b0cc
- reverts
bab39b625f
on musl systems.
- disable parallel build
Closes: #25878 [via git-merge-pr]
12 lines
388 B
Diff
12 lines
388 B
Diff
--- dmd/src/dmd/link.d
|
|
+++ dmd/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]
|