mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Fix linux build. posix_spawn doesn't inherit the environment by default.
llvm-svn: 101701
This commit is contained in:
parent
22b58ac393
commit
2b694c49bb
@ -34,6 +34,8 @@
|
||||
#include <spawn.h>
|
||||
#endif
|
||||
|
||||
extern char **environ;
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
||||
@ -200,6 +202,7 @@ Program::Execute(const Path &path, const char **args, const char **envp,
|
||||
}
|
||||
|
||||
pid_t PID;
|
||||
if (!envp) envp = (const char**)environ;
|
||||
int Err = posix_spawn(&PID, path.c_str(), &FileActions,
|
||||
/*attrp*/0, (char**)args, (char**)envp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user