- Hello I have this bug, when compiling genode : arch : x86_64
Program server/iso9660/iso9660 COMPILE iso9660.o /opt/genode/os/src/server/iso9660/iso9660.cc: In function ‘void Iso::init()’: /opt/genode/os/src/server/iso9660/iso9660.cc:484: erreur: no matching function for call to ‘Block::Connection::info(unsigned int*, Genode::size_t*, Block::Session::Operations*)’ /opt/genode/os/include/block_session/client.h:53: note: candidats sont: virtual void Block::Session_client::info(Genode::size_t*, Genode::size_t*, Block::Session::Operations*) make[2]: *** [iso9660.o] Erreur 1
- For the moment, I changed line 484 :
Index: iso9660.cc =================================================================== --- iso9660.cc (révision 129) +++ iso9660.cc (copie de travail) @@ -479,7 +479,8 @@ Sector::_blk = &_blk; Sector::_source = _blk.tx();
- unsigned blk_cnt = 0; + //unsigned blk_cnt = 0; + Genode::size_t blk_cnt=0; Block::Session::Operations ops; _blk.info(&blk_cnt, &Sector::_blk_size, &ops); }
/stephane