mirror of
https://github.com/AdaCore/OPAVES.git
synced 2026-02-12 12:43:36 -08:00
25 lines
594 B
Plaintext
25 lines
594 B
Plaintext
abstract project Gnattest_Common is
|
|
for Languages use ("Ada");
|
|
for Source_Files use ();
|
|
for Runtime ("Ada") use "ravenscar-full-stm32f4";
|
|
for Target use "arm-eabi";
|
|
|
|
package Builder is
|
|
for Global_Configuration_Pragmas use "suppress.adc";
|
|
end Builder;
|
|
|
|
package Linker is
|
|
for Default_Switches ("ada") use ("-g");
|
|
end Linker;
|
|
|
|
package Binder is
|
|
for Default_Switches ("ada") use ("-E", "-static");
|
|
end Binder;
|
|
|
|
package Compiler is
|
|
for Default_Switches ("ada") use
|
|
("-g", "-gnatyM0", "-gnata");
|
|
end Compiler;
|
|
|
|
end Gnattest_Common;
|