File: asm.xml

package info (click to toggle)
gprbuild 2018-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,248 kB
  • sloc: ada: 68,368; xml: 4,043; makefile: 423; sh: 365; ansic: 97; cpp: 89; fortran: 62
file content (59 lines) | stat: -rw-r--r-- 2,087 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" ?>
<gprconfig>
   <!--  This package provides the default standard options for a gcc
         Asm compiler -->

   <configuration>
     <compilers>
       <compiler name="^GCC-ASM$" language="Asm_Cpp" />
     </compilers>
     <config>
   package Compiler is
      for Driver            ("Asm_Cpp") use "${PATH(asm_cpp)}${PREFIX(asm_cpp)}gcc";
      for Leading_Required_Switches ("Asm_Cpp") use
         Compiler'Leading_Required_Switches ("Asm_Cpp") &amp;
         ("-c", "-x", "assembler-with-cpp");
      for Include_Switches        ("Asm_Cpp") use ("-I");
      for Max_Command_Line_Length use "8192";
      for Response_File_Format    ("Asm_Cpp") use "GCC_GNU";
      for Dependency_Switches ("Asm_Cpp") use ("-MMD", "-MF", "");
   end Compiler;
     </config>
   </configuration>

   <configuration>
     <compilers>
       <compiler name="^GCC-ASM$" language="Asm" />
     </compilers>
     <config>
   package Compiler is
      for Driver            ("Asm") use "${PATH(asm)}${PREFIX(asm)}gcc";
      for Leading_Required_Switches ("Asm") use
        Compiler'Leading_Required_Switches ("Asm") &amp;
        ("-c", "-x", "assembler");
      for Include_Switches        ("Asm") use ("-I");
      for Max_Command_Line_Length use "8192";
      for Response_File_Format    ("Asm") use "GCC_GNU";
      for Dependency_Switches ("Asm") use ("-MMD", "-MF", "");
   end Compiler;
     </config>
   </configuration>

   <configuration>
     <compilers>
       <compiler name="^GCC-ASM$" language="Asm2" />
     </compilers>
     <config>
   package Compiler is
      for Driver            ("Asm2") use "${PATH(asm2)}${PREFIX(asm2)}gcc";
      for Leading_Required_Switches ("Asm2") use
        Compiler'Leading_Required_Switches ("Asm2") &amp;
        ("-c", "-x", "assembler");
      for Include_Switches        ("Asm2") use ("-I");
      for Max_Command_Line_Length use "8192";
      for Response_File_Format    ("Asm2") use "GCC_GNU";
      for Dependency_Switches ("Asm2") use ("-MMD", "-MF", "");
   end Compiler;
     </config>
   </configuration>
</gprconfig>