From 4092effe93b3f3e084389cd1d1316764d1981aa1 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Thu, 21 May 2020 19:38:20 +0200 Subject: [PATCH] Document CROSS_*FLAGS --- doc/md/Development/Maintainers.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/md/Development/Maintainers.md b/doc/md/Development/Maintainers.md index 85fcf8963..2a49343fd 100644 --- a/doc/md/Development/Maintainers.md +++ b/doc/md/Development/Maintainers.md @@ -49,7 +49,9 @@ and it will be added along the other firmware as: For verbose usage and see the actual commands being executed, add `V=1`. -`CFLAGS` and `LDFLAGS` can be overriden by environment variables. +`CFLAGS` and `LDFLAGS` can be overriden by environment variables for client-side components. + +`CROSS_CFLAGS` and `CROSS_LDFLAGS` can be overriden by environment variables for ARM-side components. Default compiler is gcc but you can use clang for the non-ARM parts with e.g. `make client CC=clang CXX=clang++ LD=clang++`.