Skip to content

Commit

Permalink
Fix 32-bit clang-cl build
Browse files Browse the repository at this point in the history
  • Loading branch information
solemnwarning committed Aug 2, 2024
1 parent e15985c commit dd022b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/math/bigint/big_ops2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* configure.py to allow cpu-specific libs in the compiler info or os+cc+arch-specific libs in the
* module info. Hopefully this can go away when the above Clang issue is fixed anyway.
*/
#if defined(BOTAN_BUILD_COMPILER_IS_CLANGCL)
#if defined(_WIN64) && defined(BOTAN_BUILD_COMPILER_IS_CLANGCL)
#pragma comment(lib, "clang_rt.builtins-x86_64.lib")
#endif

Expand Down

0 comments on commit dd022b3

Please sign in to comment.