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;
|
|
|
|
postHook = ./posthook.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) {
|
|
|
|
inherit stdenv;
|
|
|
|
name = "gcc-native";
|
|
|
|
isNative = true;
|
|
|
|
gcc = "/usr";
|
|
|
|
};
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|