X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/d190cdc3f5544636abb56dc1874be391d3e1b148..5ba3f43ea354af8ad55bea84372a2bc834d8757c:/README.md diff --git a/README.md b/README.md index 2d3ba49a8..b285c1a6a 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,8 @@ Other makefile options * $ make REMOTEBUILD=user@remotehost # perform build on remote host * $ make BUILD_JSON_COMPILATION_DATABASE=1 # Build Clang JSON Compilation Database +The XNU build system can optionally output color-formatted build output. To enable this, you can either +set the `XNU_LOGCOLORS` environment variable to `y`, or you can pass `LOGCOLORS=y` to the make command. Debug information formats @@ -244,6 +246,11 @@ member file lists and their default location are described below - Definition - INSTALL_KF_MI_LCL_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES} + e. `EXPORT_MI_LIST` : Exports header file to all of xnu (bsd/, osfmk/, etc.) + for compilation only. Does not install anything into the SDK. + Definition - + EXPORT_MI_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES} + If you want to install the header file in a sub-directory of the paths described in (1), specify the directory name using two variables `INSTALL_MI_DIR` and `EXPORT_MI_DIR` as follows -