forked from lix-project/lix
Pass configuration settings to the substituters
Previously substituters could read nix.conf themselves, but this didn't take --option flags into account.
This commit is contained in:
parent
f9613da180
commit
d059bf48e4
|
@ -19,9 +19,17 @@ $useBindings = "@perlbindings@" eq "yes";
|
||||||
%config = ();
|
%config = ();
|
||||||
|
|
||||||
sub readConfig {
|
sub readConfig {
|
||||||
|
if (defined $ENV{'_NIX_OPTIONS'}) {
|
||||||
|
foreach my $s (split '\n', $ENV{'_NIX_OPTIONS'}) {
|
||||||
|
my ($n, $v) = split '=', $s, 2;
|
||||||
|
$config{$n} = $v;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
my $config = "$confDir/nix.conf";
|
my $config = "$confDir/nix.conf";
|
||||||
return unless -f $config;
|
return unless -f $config;
|
||||||
|
|
||||||
open CONFIG, "<$config" or die "cannot open `$config'";
|
open CONFIG, "<$config" or die "cannot open `$config'";
|
||||||
while (<CONFIG>) {
|
while (<CONFIG>) {
|
||||||
/^\s*([\w|-]+)\s*=\s*(.*)$/ or next;
|
/^\s*([\w|-]+)\s*=\s*(.*)$/ or next;
|
||||||
|
|
|
@ -2494,6 +2494,10 @@ void SubstitutionGoal::tryToRun()
|
||||||
outPipe.readSide.close();
|
outPipe.readSide.close();
|
||||||
outPipe.writeSide.close();
|
outPipe.writeSide.close();
|
||||||
|
|
||||||
|
/* Pass configuration options (including those overriden
|
||||||
|
with --option) to the substituter. */
|
||||||
|
setenv("_NIX_OPTIONS", packSettings().c_str(), 1);
|
||||||
|
|
||||||
/* Fill in the arguments. */
|
/* Fill in the arguments. */
|
||||||
Strings args;
|
Strings args;
|
||||||
args.push_back(baseNameOf(sub));
|
args.push_back(baseNameOf(sub));
|
||||||
|
|
|
@ -36,10 +36,12 @@ bool printBuildTrace = false;
|
||||||
|
|
||||||
static bool settingsRead = false;
|
static bool settingsRead = false;
|
||||||
|
|
||||||
static std::map<string, Strings> settings;
|
typedef std::map<string, Strings> Settings;
|
||||||
|
|
||||||
|
static Settings settings;
|
||||||
|
|
||||||
/* Overriden settings. */
|
/* Overriden settings. */
|
||||||
std::map<string, Strings> settingsCmdline;
|
Settings settingsCmdline;
|
||||||
|
|
||||||
|
|
||||||
string & at(Strings & ss, unsigned int n)
|
string & at(Strings & ss, unsigned int n)
|
||||||
|
@ -82,7 +84,7 @@ static void readSettings()
|
||||||
};
|
};
|
||||||
|
|
||||||
settings.insert(settingsCmdline.begin(), settingsCmdline.end());
|
settings.insert(settingsCmdline.begin(), settingsCmdline.end());
|
||||||
|
|
||||||
settingsRead = true;
|
settingsRead = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,7 +92,7 @@ static void readSettings()
|
||||||
Strings querySetting(const string & name, const Strings & def)
|
Strings querySetting(const string & name, const Strings & def)
|
||||||
{
|
{
|
||||||
if (!settingsRead) readSettings();
|
if (!settingsRead) readSettings();
|
||||||
std::map<string, Strings>::iterator i = settings.find(name);
|
Settings::iterator i = settings.find(name);
|
||||||
return i == settings.end() ? def : i->second;
|
return i == settings.end() ? def : i->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -169,5 +171,16 @@ void setDefaultsFromEnvironment()
|
||||||
buildTimeout = queryIntSetting("build-timeout", 0);
|
buildTimeout = queryIntSetting("build-timeout", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
string packSettings()
|
||||||
|
{
|
||||||
|
string s;
|
||||||
|
if (!settingsRead) readSettings();
|
||||||
|
foreach (Settings::iterator, i, settings) {
|
||||||
|
s += i->first; s += '='; s += concatStringsSep(" ", i->second); s += '\n';
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,5 +115,7 @@ void reloadSettings();
|
||||||
|
|
||||||
void setDefaultsFromEnvironment();
|
void setDefaultsFromEnvironment();
|
||||||
|
|
||||||
|
string packSettings();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -931,6 +931,10 @@ void LocalStore::startSubstituter(const Path & substituter, RunningSubstituter &
|
||||||
written in Perl (i.e. all of them) fail. */
|
written in Perl (i.e. all of them) fail. */
|
||||||
unsetenv("DYLD_LIBRARY_PATH");
|
unsetenv("DYLD_LIBRARY_PATH");
|
||||||
|
|
||||||
|
/* Pass configuration options (including those overriden
|
||||||
|
with --option) to the substituter. */
|
||||||
|
setenv("_NIX_OPTIONS", packSettings().c_str(), 1);
|
||||||
|
|
||||||
fromPipe.readSide.close();
|
fromPipe.readSide.close();
|
||||||
toPipe.writeSide.close();
|
toPipe.writeSide.close();
|
||||||
if (dup2(toPipe.readSide, STDIN_FILENO) == -1)
|
if (dup2(toPipe.readSide, STDIN_FILENO) == -1)
|
||||||
|
|
Loading…
Reference in a new issue