Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aaa_base/alire.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "aaa"
version = "0.3.0"
version = "0.3.0-dev"
description = "Alex's Ada Assortment (of miscellaneous utilities)"

long-description = """
Expand Down
4 changes: 2 additions & 2 deletions aaa_base/config/aaa_config.ads
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma Style_Checks (Off);
package Aaa_Config is
pragma Pure;

Crate_Version : constant String := "0.3.0";
Crate_Version : constant String := "0.3.0-dev";
Crate_Name : constant String := "aaa";

Alire_Host_OS : constant String := "linux";
Expand All @@ -15,6 +15,6 @@ package Aaa_Config is
Alire_Host_Distro : constant String := "suse";

type Build_Profile_Kind is (release, validation, development);
Build_Profile : constant Build_Profile_Kind := validation;
Build_Profile : constant Build_Profile_Kind := development;

end Aaa_Config;
10 changes: 3 additions & 7 deletions aaa_base/config/aaa_config.gpr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Configuration for aaa generated by Alire
abstract project Aaa_Config is
Crate_Version := "0.3.0";
Crate_Version := "0.3.0-dev";
Crate_Name := "aaa";

Alire_Host_OS := "linux";
Expand All @@ -11,21 +11,17 @@ abstract project Aaa_Config is
Ada_Compiler_Switches := External_As_List ("ADAFLAGS", " ");
Ada_Compiler_Switches := Ada_Compiler_Switches &
(
"-O3" -- Optimize for performance
,"-gnatn" -- Enable inlining
"-Og" -- Optimize for debug
,"-ffunction-sections" -- Separate ELF section for each function
,"-fdata-sections" -- Separate ELF section for each variable
,"-g" -- Generate debug info
,"-gnato" -- Enable numeric overflow checking
,"-gnatwa" -- Enable all warnings
,"-gnatw.X" -- Disable warnings for No_Exception_Propagation
,"-gnatVa" -- All validity checks
,"-gnatwe" -- Warnings as errors
,"-gnata" -- Enable assertions and contracts
,"-gnatW8" -- UTF-8 encoding for wide characters
);

type Build_Profile_Kind is ("release", "validation", "development");
Build_Profile : Build_Profile_Kind := "validation";
Build_Profile : Build_Profile_Kind := "development";

end Aaa_Config;
4 changes: 2 additions & 2 deletions aaa_base/config/aaa_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#ifndef AAA_CONFIG_H
#define AAA_CONFIG_H

#define CRATE_VERSION "0.3.0"
#define CRATE_VERSION "0.3.0-dev"
#define CRATE_NAME "aaa"

#define ALIRE_HOST_OS "linux"
Expand All @@ -15,6 +15,6 @@
#define BUILD_PROFILE_VALIDATION 2
#define BUILD_PROFILE_DEVELOPMENT 3

#define BUILD_PROFILE 2
#define BUILD_PROFILE 3

#endif
12 changes: 6 additions & 6 deletions aaa_texts/tests/config/aaa_texts_tests_config.gpr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-- Configuration for aaa_texts_tests generated by Alire
with "aaa_texts.gpr";
abstract project Aaa_Texts_Tests_Config is
Crate_Version := "0.0.0-test";
Crate_Name := "aaa_texts_tests";
-- Configuration for aaa generated by Alire
with "umwi.gpr";
abstract project Aaa_Config is
Crate_Version := "0.3.0-dev";
Crate_Name := "aaa";

Alire_Host_OS := "linux";

Expand Down Expand Up @@ -52,4 +52,4 @@ abstract project Aaa_Texts_Tests_Config is
type Build_Profile_Kind is ("release", "validation", "development");
Build_Profile : Build_Profile_Kind := "validation";

end Aaa_Texts_Tests_Config;
end Aaa_Config;
Loading