-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependency on aaa and bump version to 0.1.1
- Loading branch information
Showing
6 changed files
with
76 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
obj/ | ||
lib/ | ||
alire/ | ||
alire.lock | ||
config/ | ||
|
||
/obj/ | ||
/lib/ | ||
/alire/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- Configuration for toml_slicer generated by Alire | ||
pragma Restrictions (No_Elaboration_Code); | ||
|
||
package Toml_Slicer_Config is | ||
pragma Pure; | ||
|
||
Crate_Version : constant String := "0.1.1"; | ||
Crate_Name : constant String := "toml_slicer"; | ||
|
||
Alire_Host_OS : constant String := "linux"; | ||
|
||
Alire_Host_Arch : constant String := "x86_64"; | ||
|
||
Alire_Host_Distro : constant String := "ubuntu"; | ||
|
||
type Build_Profile_Kind is (release, validation, development); | ||
Build_Profile : constant Build_Profile_Kind := release; | ||
|
||
end Toml_Slicer_Config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
-- Configuration for toml_slicer generated by Alire | ||
with "aaa.gpr"; | ||
abstract project Toml_Slicer_Config is | ||
Crate_Version := "0.1.1"; | ||
Crate_Name := "toml_slicer"; | ||
|
||
Alire_Host_OS := "linux"; | ||
|
||
Alire_Host_Arch := "x86_64"; | ||
|
||
Alire_Host_Distro := "ubuntu"; | ||
Ada_Compiler_Switches := External_As_List ("ADAFLAGS", " ") & | ||
( | ||
"-O3" -- Optimize for performance | ||
,"-gnatn" -- Enable inlining | ||
,"-ffunction-sections" -- Separate ELF section for each function | ||
,"-fdata-sections" -- Separate ELF section for each variable | ||
); | ||
|
||
type Build_Profile_Kind is ("release", "validation", "development"); | ||
Build_Profile : Build_Profile_Kind := "release"; | ||
|
||
end Toml_Slicer_Config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* Configuration for toml_slicer generated by Alire */ | ||
#ifndef TOML_SLICER_CONFIG_H | ||
#define TOML_SLICER_CONFIG_H | ||
|
||
#define CRATE_VERSION "0.1.1" | ||
#define CRATE_NAME "toml_slicer" | ||
|
||
#define ALIRE_HOST_OS "linux" | ||
|
||
#define ALIRE_HOST_ARCH "x86_64" | ||
|
||
#define ALIRE_HOST_DISTRO "ubuntu" | ||
|
||
#define BUILD_PROFILE_RELEASE 1 | ||
#define BUILD_PROFILE_VALIDATION 2 | ||
#define BUILD_PROFILE_DEVELOPMENT 3 | ||
|
||
#define BUILD_PROFILE 1 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters