Search found 11 matches

by joveler
Sat Sep 09, 2023 4:12 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 49702

Re: ARM64 Support

Hi, I wanted to mention that I've made a number of improvements very recently: Eliminated the dependencies on libxml2 and winpthreads, so wimlib is now easier to build for Windows. Added dllexport to the declarations in wimlib.h to avoid warnings when building for Windows with clang. Updated README...
by joveler
Sat Sep 09, 2023 3:59 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 49702

Re: ARM64 Support

Hmm, I have no clue why this error disappeared, but it compiles fine now. A quick test in QEMU did also gone well. Will test in next week on real ARM64 hardware. Finally, I figured out why sometimes wimlib-imagex.exe is built or not built in cross-compiling. We now have an official Windows ARM64 wi...
by joveler
Wed Apr 07, 2021 4:58 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 49702

Re: ARM64 Support

I succeeded in building libwim-15.dll on MSYS2 with llvm-mingw toolchain. Even the latest MinGW-w64 toolchain available on MSYS2 does not support aarch64-w64-mingw32 target. However, LLVM/Clang does support ARM64 Windows target, and MSYS2 community was testing clang toolchain (ref) for it. Thus I tr...
by joveler
Thu Mar 01, 2018 4:25 am
Forum: wimlib discussion
Topic: WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths
Replies: 3
Views: 8204

Re: WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths

Did you consider just calling wimlib_extract_files() twice, once with the paths with wildcard characters and WIMLIB_EXTRACT_FLAG_GLOB_PATHS, and the other with the remaining paths and without any flags? I tried that solution before, and it indeed works. The reason for this request is I wanted to le...
by joveler
Wed Feb 28, 2018 4:35 pm
Forum: wimlib discussion
Topic: WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths
Replies: 3
Views: 8204

Re: WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths

To achieve this in current version of wimlib, I had to track wimlib's error messags from error_file . After calling wimlib_extract_pathlist() , my application search for this sentence in newly added warning/error messages. [WARNING] No matches for path pattern "(.+)" With these at least I ...
by joveler
Wed Feb 28, 2018 4:26 pm
Forum: wimlib discussion
Topic: WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths
Replies: 3
Views: 8204

WIMLIB_EXTRACT_FLAG_GLOB_PATHS affects non-glob paths

wimlib_extract_pathlist() and wimlib_extract_paths() are both capable of bulk extraction of files from wim. With them, I want these behaviors in my application: - Glob paths (with *, ?) not being matched is allowed. - When non-glob paths (without *, ?) are not matched, error should be raised. But i...
by joveler
Wed Feb 28, 2018 3:46 pm
Forum: wimlib discussion
Topic: [BUG] write_split_wim() cannot process file extension correctly
Replies: 2
Views: 7161

Re: [BUG] write_split_wim() cannot process file extension correctly

With 1.13.0-BETA2, my unit test reports success in path with many dots.
Thanks for fixing this!
by joveler
Thu Feb 22, 2018 7:07 am
Forum: wimlib discussion
Topic: More detailed error information in wimlib_extract_pathlist()
Replies: 3
Views: 8278

Re: More detailed error information in wimlib_extract_pathlist()

Thanks for your answer, now ManagedWimLib is capable of displaying detailed message about errors! As you suggested, I used wimlib_set_error_file_by_name() and wimlib_set_print_errors() to write wrapper method for feching last error message when wimlib functions did not return WIMLIB_ERR_SUCCESS. Ex)...
by joveler
Tue Feb 20, 2018 8:40 pm
Forum: wimlib discussion
Topic: [BUG] write_split_wim() cannot process file extension correctly
Replies: 2
Views: 7161

[BUG] write_split_wim() cannot process file extension correctly

Function write_split_wim() cannot process file extension correctly when file path has 2 dots or more. I found this bug while testing wimlib_split() with C# wrapper. In many operating system (including Windows) and programs, string located after last dot of file name is treated as file extension. So ...
by joveler
Sat Feb 03, 2018 3:18 pm
Forum: wimlib discussion
Topic: WimLib C#
Replies: 1
Views: 7354

Re: WimLib C#

I know it was posted nearly a year ago, but I wanted to let you know my work. I implemented a wrapper class for progress callback in C#, see github for code. It is still being developed so stable release to NuGet will take much time, but I wish my work can help you. EDIT: ManagedWimLib is now accesi...