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

Armadillo is not found (error 404) #126

Open
mahyoseung opened this issue Dec 12, 2024 · 2 comments
Open

Armadillo is not found (error 404) #126

mahyoseung opened this issue Dec 12, 2024 · 2 comments

Comments

@mahyoseung
Copy link

The version of the armadillo file is no longer supported. Even if you extract and write checksum using another version, it says that it does not fit in hexadecimal. Please tell me how to use other versions and the available version

@rsanchezpizani
Copy link

rsanchezpizani commented Dec 12, 2024 via email

@SaraAlthubaiti
Copy link

I had a problem similar to this recently and found that what worked was
download armadillo tar file. Install locally, obtain the sha256 add that
and new path to the workspace file and give it a try.

Here is my modified header with armadillo 14.0.3. good luck. I haven't
tried in a couple of days so it might be a recent issue but this worked 3
weeks ago for me.

Download the armadillo file form location, add the headers to the workspace
be aware that you might need to change the sha256. You need to convert the
one in armadillo download site

http_archive(

name = "armadillo_headers",

build_file_content = """

cc_library(

name = "armadillo_header",

hdrs = glob(["include/armadillo", "include/armadillo_bits/*.hpp"]),

includes = ["include/"],

visibility = ["//visibility:public"],

)

""",

sha256 =

"ebd6215eeb01ee412fed078c8a9f7f87d4e1f6187ebcdc1bc09f46095a4f4003", #
Correct SHA-256 checksum for Armadillo 14.0.3

strip_prefix = "armadillo-14.0.3",

urls = ["

https://sourceforge.net/projects/arma/files/armadillo-14.0.3.tar.xz"],

)

Rodrigo Sanchez-Pizani

Sent from Pixel XL
Please accept apologies for brevity and spelling

Your solution saved spending additional 3 hours on this 😫 Thank you sooo much 🙏

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

3 participants