Search found 472 matches

by synchronicity
Tue Mar 12, 2024 3:10 am
Forum: wimlib discussion
Topic: wimlib 1.14.4 released
Replies: 2
Views: 570

Re: wimlib 1.14.4 released

Thanks, I've fixed the date.
by synchronicity
Sat Feb 24, 2024 7:25 pm
Forum: wimlib discussion
Topic: wimlib 1.14.4 released
Replies: 2
Views: 570

wimlib 1.14.4 released

I've released wimlib 1.14.4: Fixed potential crash when writing WIM XML data, introduced in v1.14.0. Improved some documentation. Fixed the Windows build script to avoid an unnecessary DLL dependency when building with MSYS2 MINGW32 or MSYS2 MINGW64. The files and their SHA-256 checksums are: 3633db...
by synchronicity
Sat Feb 10, 2024 5:36 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

Since this is off-topic from ARM64 support, can you please create a new thread? Please include a clear report of the issue, including the error message(s) you're currently seeing and attaching the DLL that's not working. Please use the latest git master branch only, without anything reverted , and i...
by synchronicity
Thu Feb 08, 2024 3:30 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

Code: Select all

if "$cc" --version | grep -q '(GCC)'; then
        configure_args+=("CC=$cc -static -static-libgcc -static-libstdc++")
fi
That's also the old code, not the new code, so make sure you've run 'git pull'...
by synchronicity
Thu Feb 08, 2024 3:21 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

Yes, I haven't seen the issue on newer operating systems such as Windows 10, and surely wouldn't run into it on Windows Server 2022 either.
Why not do the build on one of those, then?
by synchronicity
Wed Feb 07, 2024 6:42 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

(I would also encourage you to start a new thread if you have issues that are unrelated to the ARM64 support, which this thread is about.)
by synchronicity
Wed Feb 07, 2024 6:42 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

Hi, It turned out that the windows-build.sh script had a bug that made it not use the -static-libgcc compiler flag in the MINGW32 and MINGW64 MSYS2 environments as intended, causing the DLL to depend on libgcc. I've pushed out a commit that fixed this. This did not affect the official i686 and x86_6...
by synchronicity
Wed Feb 07, 2024 12:18 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 43906

Re: ARM64 Support

What dependency problems are you referring to, specifically? The ARM64 libwim-15.dll has the same dependencies as the x86_64 one, I believe. It only depends on standard Windows DLLs (ntdll, msvcrt, advapi32, user32, kernel32).
by synchronicity
Sat Feb 03, 2024 6:05 am
Forum: wimlib discussion
Topic: VSS paths unable to be used with wimlib-imagex
Replies: 6
Views: 2926

Re: VSS paths unable to be used with wimlib-imagex

Hi, I tested this and paths to the root of the volume do work: wimcapture \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\ test.wim However paths to subdirectories do not work: wimcapture \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Users test.wim [ERROR] Can't open "\\Users" (status=c0...
by synchronicity
Fri Jan 26, 2024 4:03 am
Forum: wimlib discussion
Topic: Is wimexport with LZMS always solid?
Replies: 2
Views: 1011

Re: Is wimexport with LZMS always solid?

It looks like the problem is that LZMS implies the use of the new WIM format instead of the old one, and then wimlib sees that because both the source and destination WIMs are in the new format and the source WIM has solid resources, it should use solid compression in the destination WIM. And there'...