[OpenBIOS] [Patch v3] Add non-standard compiler prefix support

Programmingkid programmingkidx at gmail.com
Thu Apr 30 16:56:47 CEST 2015


This version of the patch just fixes up the comment to sound better.

Signed-off-by: John Arbuckle <programmingkidx at gmail.com>

Index: config/scripts/switch-arch
===================================================================
--- config/scripts/switch-arch	(revision 1335)
+++ config/scripts/switch-arch	(working copy)
@@ -99,7 +99,8 @@
 
 select_prefix()
 {
-    for TARGET in ${1}-unknown-linux-gnu- ${1}-linux-gnu- ${1}-linux- ${1}-elf- ${1}-eabi-
+    # The user can specify the cross compiler like this: CROSS_COMPILER=ppc-elf- ./switch-arch ppc
+    for TARGET in ${1}-unknown-linux-gnu- ${1}-linux-gnu- ${1}-linux- ${1}-elf- ${1}-eabi- $CROSS_COMPILER
     do
         if type ${TARGET}gcc > /dev/null 2>&1
         then




More information about the OpenBIOS mailing list