Open sun123-cmd opened 3 weeks ago
I have fixed it by following:
LSOracle/lib/alice/include/alice/detail/utils.hpp
at line 99
inline std::string format_with_vector( const std::string& fmtstr, const std::vector<std::string>& values )
{
using ctx = fmt::format_context;
std::vector<fmt::basic_format_arg<ctx>> args;
for ( const auto& v : values )
{
// args.emplace_back( fmt::internal::make_arg<ctx>( v ) );
args.emplace_back( fmt::detail::make_arg<ctx>( v ) );
}
and then build project:
cmake -B build . -DCMAKE_BUILD_TYPE=RELEASE -D ENABLE_OPENSTA=ON -DENABLE_ABC=ON cd build && make
Hello: Thanks for your good work~ While compiling source code as instructions in
README
file, I met the following error:I'm using
g++ 10.3.0
, I wonder how to fix this compiling error.