Переглянути джерело

* compilation of all target cpus fixed

florian 1 місяць тому
батько
коміт
97bfcb8bf2

+ 2 - 1
compiler/ogcoff.pas

@@ -986,7 +986,8 @@ implementation
           '.stack',
           '.heap',
           '.gcc_except_table',
-          '.ARM.attributes'
+          '.ARM.attributes',
+          '.note'
         );
 
 const go32v2stub : array[0..2047] of byte=(

+ 2 - 1
compiler/ogrel.pas

@@ -318,7 +318,8 @@ implementation
           '_STACK',
           '_HEAP',
           '.gcc_except_table',
-          '.ARM.attributes'
+          '.ARM.attributes',
+          '.note'
         );
       begin
         if atype=sec_user then

+ 4 - 2
compiler/omfbase.pas

@@ -88,7 +88,8 @@ interface
       'stack',
       'heap',
       'gcc_except_table',
-      'ARM_attributes'
+      'ARM_attributes',
+      'note'
     );
 
     { OMF record types }
@@ -2966,7 +2967,8 @@ implementation
         {stack} 'STACK',
         {heap} 'HEAP',
         {gcc_except_table} 'DATA',
-        {ARM_attributes} 'DATA'
+        {ARM_attributes} 'DATA',
+        {note} 'DATA'
       );
     begin
       result:=segclass[atype];

+ 1 - 0
compiler/powerpc/agppcmpw.pas

@@ -123,6 +123,7 @@ interface
         '',
         '',
         '',
+        '',
         ''
       );
 

+ 2 - 0
compiler/x86/agx86int.pas

@@ -154,6 +154,7 @@ implementation
         '',
         '',
         '',
+        '',
         ''
       );
 
@@ -210,6 +211,7 @@ implementation
         '',
         '',
         '',
+        '',
         ''
       );
 

+ 2 - 1
compiler/x86/agx86nsm.pas

@@ -592,7 +592,8 @@ interface
           '.stack',
           '.heap',
           ',gcc_except_table',
-          ',ARM_attributes'
+          ',ARM_attributes',
+          ',note'
         );
       var
         secname,secgroup: string;

+ 2 - 1
compiler/z80/agsdasz80.pas

@@ -273,7 +273,8 @@ unit agsdasz80;
           '_STACK',
           '_HEAP',
           '.gcc_except_table',
-          '.ARM.attributes'
+          '.ARM.attributes',
+          '.note'
         );
       begin
         if atype=sec_user then

+ 2 - 1
compiler/z80/agz80vasm.pas

@@ -289,7 +289,8 @@ unit agz80vasm;
           '.stack',
           '.heap',
           '.gcc_except_table',
-          '.ARM.attributes'
+          '.ARM.attributes',
+          '.note'
         );
       var
         sep: string[3];