Bitcointalk · Version 0.3.8.1 update for Linux 64-bit

中本聪,2010 年 8 月 9 日

SN-2226 已核对来源,附原文与上下文。

阅读语言
中文译文

有道理,我相信没有 SSE2 时你可以关掉生成来运行。

在 cryptopp/config.h 顶部加上怎么样:

#if !defined(_M_X64) && !defined(__x86_64__)
#define CRYPTOPP_DISABLE_SSE2  1
#endif

这会对 32 位构建禁用 SSE2。(至少在 GCC 或 MSVC 下)

ORIGINAL · 英文原文
That's a good point, I believe you could run with generation off if you don't have SSE2.

How about add to the top of cryptopp/config.h:

#if !defined(_M_X64) && !defined(__x86_64__)
#define CRYPTOPP_DISABLE_SSE2  1
#endif

that would disable SSE2 for 32-bit builds.  (at least with GCC or MSVC)
来源
Bitcointalk 原始链接 ↗ 记录编号 SN-2226