Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make acltest fails per README on Cygwin #13

Open
byronka opened this issue Apr 28, 2018 · 1 comment
Open

make acltest fails per README on Cygwin #13

byronka opened this issue Apr 28, 2018 · 1 comment

Comments

@byronka
Copy link

byronka commented Apr 28, 2018

byron@DESKTOP-4GITO6A ~/dev/Ada-Crypto-Library
$ make acltest
gnatmake -P acltest.gpr
acltest.gpr:5:33: "/usr/share/ada/adainclude/aunit/" is not a valid directory
gprbuild: "acltest.gpr" processing failed
make: *** [Makefile:29: acltest] Error 5

@byronka
Copy link
Author

byronka commented Apr 28, 2018

Naive fix:

$ git diff
diff --git a/acltest.gpr b/acltest.gpr
index 2b0dee6..3a876e7 100644
--- a/acltest.gpr
+++ b/acltest.gpr
@@ -2,7 +2,7 @@ with "libadacrypt.gpr";

project AclTest is

  • for Source_Dirs use ("test/","/usr/share/ada/adainclude/aunit/");
  • for Source_Dirs use ("test/","C:\GNAT\2017\include\aunit");
    for Object_Dir use "test";
    for Main use ("test-asymmetric_ciphers.adb","test-big_number.adb",
    "test-hash.adb", "test-kdf.adb", "test-symmetric_ciphers.adb",
    @@ -22,4 +22,4 @@ project AclTest is
    package Linker is
    end Linker;

-end AclTest;
\ No newline at end of file
+end AclTest;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant