13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package Linker is
for Default_Switches use Natools.Linker'Default_Switches;
end Linker;
package Naming is
case Natools.Safety is
when "None" =>
for body ("Natools.References.Tools")
use "natools-references-tools__unsafe.adb";
when "Portable" =>
for body ("Natools.References.Tools")
use "natools-references-tools__protected.adb";
end case;
end Naming;
end Tests;
|
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package Linker is
for Default_Switches use Natools.Linker'Default_Switches;
end Linker;
package Naming is
case Natools.Safety is
when "None" | "Intel" =>
for body ("Natools.References.Tools")
use "natools-references-tools__unsafe.adb";
when "Portable" =>
for body ("Natools.References.Tools")
use "natools-references-tools__protected.adb";
end case;
end Naming;
end Tests;
|