diff options
author | Nico Huber <nico.huber@secunet.com> | 2015-09-08 12:30:27 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2015-09-10 09:12:00 +0000 |
commit | bb313bf2219da1c483b2205f301b95db06eac760 (patch) | |
tree | c99c417b5f80cb956cb2b7594d9c1f0d7ba52cf3 /util/crossgcc/Makefile | |
parent | 5e1fb2d0748c49e064e1ed2cc68db36eff3bc00c (diff) |
crossgcc: Add option to build gcc for specific languages
Add an option `--languages` which takes a list of target languages to
buildgcc. That list gets passed through to the configure step for
building gcc.
Also alter the Makefile to pass $(BUILD_LANGUAGES) to that option, if
this variable is set.
Change-Id: I6a74ab2c75871ea8d03a499cca33d88938b59c8d
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: http://review.coreboot.org/11589
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/crossgcc/Makefile')
-rw-r--r-- | util/crossgcc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index b1fba4ab02..262f4d2b64 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -19,7 +19,8 @@ build_tools_without_gdb: build_gcc build_iasl ### targets to do buildgcc builds build_gcc: - bash ./buildgcc -p $(BUILD_PLATFORM) $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS) + bash ./buildgcc -p $(BUILD_PLATFORM) $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS) \ + $(if $(BUILD_LANGUAGES),-l $(BUILD_LANGUAGES)) build_gdb: bash ./buildgcc -p $(BUILD_PLATFORM) -P gdb $(if $(BUILDJOBS),-j $(BUILDJOBS)) $(BUILDGCC_OPTIONS) |