i'm now using the latest open-source Bluespec Compiler, bsc -v returns
Bluespec Compiler, version 2023.07 (build 0eb551d)
This is free software; for source code and copying conditions, see
https://github.com/B-Lang-org/bsc
Invoking command line:
bsc -v
however, the condition in L76-L78 in scripts/Makefile.connectal.build will be met,
and will think of bsc version 2023.07 as obsolete,
due to
BSCVERSION in L72 is 2023.07BSCMAJOR in L73 is 2023
and $(shell test $(BSCMAJOR) -le 2019 &>/dev/null && echo obsolete) will return empty and the ifeq will be met in L76
hi,
i'm now using the latest open-source Bluespec Compiler,
bsc -v
returnshowever, the condition in L76-L78 in
scripts/Makefile.connectal.build
will be met, and will think of bsc version 2023.07 as obsolete, due toBSCVERSION
in L72 is2023.07
BSCMAJOR
in L73 is2023
and
$(shell test $(BSCMAJOR) -le 2019 &>/dev/null && echo obsolete)
will return empty and theifeq
will be met in L76i think it's a bug here, caused by #192