[Tizen] Enable PGO for Linux/arm
[platform/upstream/coreclr.git] / generateexportedsymbols.awk
index 1d9b200..120897f 100644 (file)
@@ -1,11 +1,12 @@
 { 
-       # Remove the CR character in case the sources are mapped from
-       # a Windows share and contain CRLF line endings
-       gsub(/\r/,"", $0);
+    # Remove the CR character in case the sources are mapped from
+    # a Windows share and contain CRLF line endings
+    gsub(/\r/,"", $0);
 
-       # Skip empty lines and comment lines starting with semicolon
-       if (NF && !match($0, /^[:space:]*;/))
-       {
-               print "_"  $0;
-       }
+    # Skip empty lines and comment lines starting with semicolon
+    if (NF && !match($0, /^[:space:]*;/))
+    {
+        gsub(/^#/,"", $0);
+        print "_"  $0;
+    }
 }