git.codelabs.ch
/
cuda-ada.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
50572e11bf90640ce5d3e8b31dc139f76436306a
[cuda-ada.git]
/
thin
/
binding.gpr
1
project Binding is
2
3
type Arch_Type is ("x86_64", "i686");
4
5
Arch : Arch_Type := external ("ARCH", "x86_64");
6
7
for Source_Dirs use (".", ARCH);
8
for Object_Dir use "../obj";
9
10
Compiler_Switches := ("-gnat05",
11
"-fstack-check",
12
"-gnato",
13
"-g");
14
15
package Compiler is
16
for Default_Switches ("ada") use Compiler_Switches;
17
end Compiler;
18
19
end Binding;
20