Conversation
extconf.rb unconditionally listed x86.o, but MSVC has no rule to build x86.S, so linking failed with LNK1181 (cannot open x86.obj). The assembly is only used on i386 (BF_ASM == 1) and assembles to an empty object everywhere else, so skip it on mswin and use the portable C implementation in crypt_blowfish.c instead. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
gem install bcrypt --platform rubyfails onx64-mswin64Ruby becauseextconf.rbunconditionally listsx86.oin$objs. The generated Makefile has no rule to buildx86.Swithcl.exe, so linking aborts withLNK1181: cannot open input file 'x86.obj'. The assembly inx86.Sis only used on i386 (BF_ASM == 1incrypt_blowfish.c) and assembles to an empty object everywhere else, so this change skips it on mswin and links the portable C implementation instead. mingw and other platforms keep the current object list.Verified with Ruby 4.0 (
x64-mswin64_140) and Visual Studio 2022 Build Tools:rake compile specpasses (39 examples, 0 failures) and installing the locally built gem succeeds end to end.Generated with Claude Code