HuangLab-SYSU / block-emulator

MIT License
239 stars 63 forks source link

报错:exit status 0xffffffff #24

Closed codelinzhz closed 7 months ago

codelinzhz commented 7 months ago

请问我启动go run main.go -c -N 4 -S 2 -m 3 报错:exit status 0xffffffff这种是什么情况?要怎么解决?

iiinotlll commented 7 months ago

抱歉,错误出现在 .\partition\partition_CLPA.go 文件夹中的 160 行,我们使用了 0x7fffffff 来表示 INT_MAX,但是此处多打了一个 f,超出了 32 位的表示上限。这导致了该行代码在某些机器上会报错。

目前我们已经修改了此部分代码为 math.MaxInt。

烦请您下载最新的代码~

codelinzhz commented 6 months ago

修改后还是报错:exit status 0xffffffff