Change-Id: I41f56ba58af51b1ec1d7554fb35a49ccf9e778f6 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81671 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
		
			
				
	
	
		
			29 lines
		
	
	
		
			949 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			949 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
diff --git a/source/compiler/asloptions.c b/source/compiler/asloptions.c
 | 
						|
index 4bf9465ba..14c61a122 100644
 | 
						|
--- a/source/compiler/asloptions.c
 | 
						|
+++ b/source/compiler/asloptions.c
 | 
						|
@@ -234,6 +234,7 @@ AslCommandLine (
 | 
						|
     if (AslGbl_DoSignon)
 | 
						|
     {
 | 
						|
         printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME));
 | 
						|
+        printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION);
 | 
						|
         if (AslGbl_IgnoreErrors)
 | 
						|
         {
 | 
						|
             printf ("Ignoring all errors, forcing AML file generation\n\n");
 | 
						|
@@ -866,6 +867,7 @@ AslDoOptions (
 | 
						|
         case '^':
 | 
						|
 
 | 
						|
             printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME));
 | 
						|
+            printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION);
 | 
						|
             exit (0);
 | 
						|
 
 | 
						|
         case 'a':
 | 
						|
@@ -879,6 +881,7 @@ AslDoOptions (
 | 
						|
 
 | 
						|
             printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME));
 | 
						|
             printf (ACPI_COMMON_BUILD_TIME);
 | 
						|
+            printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION);
 | 
						|
             exit (0);
 | 
						|
 
 | 
						|
         case 'e':
 |