forked from OSchip/llvm-project
Revert r101701, Darwin doesn't have 'environ'. Go figure.
llvm-svn: 101702
This commit is contained in:
parent
3fdf58800a
commit
320aa4a493
|
@ -34,8 +34,6 @@
|
|||
#include <spawn.h>
|
||||
#endif
|
||||
|
||||
extern char **environ;
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
||||
|
@ -202,7 +200,6 @@ 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