Revision: 17748
          http://sourceforge.net/p/edk2/code/17748
Author:   yingke
Date:     2015-07-01 01:04:28 +0000 (Wed, 01 Jul 2015)
Log Message:
-----------
There needs to be a space between the output section name and the colon, i.e.,

  .text : ALIGN(0x1000)
       ^

Fix this for all output sections

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheu...@linaro.org>
Reviewed-by: Liming Gao <liming....@intel.com>

Modified Paths:
--------------
    trunk/edk2/BaseTools/Scripts/gcc-4K-align-ld-script

Modified: trunk/edk2/BaseTools/Scripts/gcc-4K-align-ld-script
===================================================================
--- trunk/edk2/BaseTools/Scripts/gcc-4K-align-ld-script 2015-06-30 20:15:15 UTC 
(rev 17747)
+++ trunk/edk2/BaseTools/Scripts/gcc-4K-align-ld-script 2015-07-01 01:04:28 UTC 
(rev 17748)
@@ -3,12 +3,12 @@
 {
   /* . = 0 + SIZEOF_HEADERS; */
   . = 0x280;
-  .text: ALIGN(0x1000) 
+  .text : ALIGN(0x1000)
   {
     *(.text .stub .text.* .gnu.linkonce.t.*)
     . = ALIGN(0x20);
   }
-  .data: ALIGN(0x1000)
+  .data : ALIGN(0x1000)
   {
     *(
       .rodata .rodata.* .gnu.linkonce.r.*
@@ -18,16 +18,16 @@
     )
     . = ALIGN(0x20);
   }
-  .eh_frame: ALIGN(0x1000)
+  .eh_frame : ALIGN(0x1000)
   {
     KEEP (*(.eh_frame))
   }
-  .got: ALIGN(0x1000)
+  .got : ALIGN(0x1000)
   {
     *(.got .got.*)
     . = ALIGN(0x20);
   }
-  .rela: ALIGN(0x1000)
+  .rela : ALIGN(0x1000)
   {
     *(.rela .rela.*)
   }


------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
edk2-commits mailing list
edk2-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to