2004-03-08 17:02:46 +01:00
|
|
|
{stdenv}:
|
|
|
|
|
|
|
|
(import ../generic) {
|
2003-11-03 11:22:00 +01:00
|
|
|
name = "stdenv-native";
|
2004-03-08 17:02:46 +01:00
|
|
|
preHook = ./prehook.sh;
|
2003-11-03 11:22:00 +01:00
|
|
|
initialPath = "/usr/local /usr /";
|
2004-03-08 17:02:46 +01:00
|
|
|
|
|
|
|
inherit stdenv;
|
|
|
|
|
|
|
|
gcc = (import ../../build-support/gcc-wrapper) {
|
|
|
|
name = "gcc-native";
|
2004-03-11 18:26:14 +01:00
|
|
|
nativeTools = true;
|
|
|
|
nativeGlibc = true;
|
2004-03-09 18:16:02 +01:00
|
|
|
nativePrefix = "/usr";
|
|
|
|
inherit stdenv;
|
2004-03-08 17:02:46 +01:00
|
|
|
};
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|