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

Use 1.14.4 as bundled HDF5 #243

Open
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

mulimoen
Copy link
Collaborator

@mulimoen mulimoen commented Jun 9, 2023

Replaces #207

Blocked by HDFGroup/hdf5#3091

@mulimoen
Copy link
Collaborator Author

mulimoen commented Jun 9, 2023

Hitting some bug in hdf5. Need to find a windows machine to find a fix and upstream this

@aldanor
Copy link
Owner

aldanor commented Jun 9, 2023

Wonder if we could git-bisect it in a sane way...

@mulimoen
Copy link
Collaborator Author

mulimoen commented Jun 9, 2023

From man off_t

off_t is used for describing file sizes. It is a signed integer type.

Poorly defined in other words. There is a feature test macro we could set, _FILE_OFFSET_BITS, but I am not sure if this will affect other libraries

@gauteh
Copy link

gauteh commented Sep 29, 2023

@mulimoen
Copy link
Collaborator Author

@gauteh Yes, this would provide chunks_visit.

@gauteh
Copy link

gauteh commented Sep 29, 2023

Great! Looking forward to this!

@mulimoen mulimoen changed the title Use 1.14.2 as bundled HDF5 Use 1.14.3 as bundled HDF5 Nov 5, 2023
@mulimoen mulimoen force-pushed the feature/static-hdf5-1.14.1 branch 3 times, most recently from 7aad547 to 62d3637 Compare November 5, 2023 12:21
@mulimoen
Copy link
Collaborator Author

mulimoen commented Nov 5, 2023

Still some mysterious errors here. On wine StrStrIA from shlwapi is not found (maybe this library has a different name on wine compared to windows?). mingw and mingw-static fails with STATUS_STACK_BUFFER_OVERRUN / STATUS_HEAP_CORRUPTION, although this seems to be the case in the current CI too.

@@ -29,7 +29,7 @@ impl Version {
}

pub fn parse(s: &str) -> Option<Self> {
let re = Regex::new(r"^(1)\.(8|10|12|14)\.(\d\d?)(_\d+)?((-|.)(patch)?\d+)?$").ok()?;
let re = Regex::new(r"^(1)\.(8|10|12|14)\.(\d\d?)(_|.\d+)?((-|.)(patch)?\d+)?$").ok()?;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the . intended to be escaped \.? If not, the regex can be shortened. In any case, I now see version strings "1.14.4-2".

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could probably simplify it greatly by ignoring everything after number.number.number

@mulimoen mulimoen changed the title Use 1.14.3 as bundled HDF5 Use 1.14.4 as bundled HDF5 May 12, 2024
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

Successfully merging this pull request may close these issues.

None yet

4 participants