mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
Add --verbose switch to idlac_wrapper. For EC06-003. Subversion-branch: /trunk/polyorb Subversion-revision: 39578
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
project Common is
|
|
|
|
for Source_Files use ();
|
|
|
|
package Compiler is
|
|
|
|
Common_Ada_Compiler_Switches :=
|
|
("-g", -- ???
|
|
"-O0", -- ???
|
|
"-gnatfy", -- full errors, enable style checks
|
|
"-gnatwae", -- enable warnings, warnings-as-errors
|
|
"-gnatoa", -- overflow checks, assertions enabled
|
|
"-fstack-check");
|
|
|
|
end Compiler;
|
|
|
|
end Common;
|