Convert static VFS library to dynamic library

Fix #2759
This commit is contained in:
Emery Hemingway
2018-04-23 10:49:21 +02:00
committed by Christian Helmuth
parent cbfec0deed
commit e2661c58dc
140 changed files with 161 additions and 137 deletions

View File

@ -263,4 +263,7 @@ struct Fs_report::Main
}
};
void Component::construct(Genode::Env &env) { static Fs_report::Main main(env); }
void Component::construct(Genode::Env &env)
{
static Fs_report::Main main(env);
}