Is there a g++ equivalent to Visual Studio\'s __declspec(novtable) argument?
Basically, in a pure virtual base class the __declspec(novtable)
I don't think there is one -- if there was, it would be listed under the type attributes page of the GCC manual. GCC uses type attributes to add extra annotations to types (such as alignment and padding), but there is no type attribute equivalent to __declspc(novtable) listed there.
I also don't see any compiler flag in the command line options relating to this optimization.