MAMEWorld >> News
Previous thread Previous  View all threads Index   Next thread Next   Flat Mode Flat  

Digitalghost
MAMEHub Creator
Reged: 06/15/10
Posts: 67
Loc: California, USA
Send PM
Re: Faster MAMEhub released and our new web site
09/07/11 08:16 PM


> > Unless this bug has changed since 0.139, recent versions of MinGW/MSYS do not build
> > MAME at all, because of issues with the Makefiles.
>
> The bug hasn't changed, but MAME itself has been largely cleared of GCC 4.6 problems
> in that timeframe. Similarly, Clang 2.9 should work for MAME when it's released as
> we've also been testing there (and they've kindly fixed a bug specifically exposed by
> MAME).
>
> > make depend does not address what I'm talking about: What does address what I'm
> > talking about is replacing drivlist.c with a driver interface and binding the
> drivers
> > at runtime. Then, the code in src/emu/* and mame/drivers/* can be static libraries
> > without creating a circular dependency at link-time. The way the current build
> system
> > handles this is by linking hundreds of .o's into one monolithic executable, which
> > takes forever and breaks building on android.
>
> Now I'm confused, because that's not what the current build system does at all. It
> distills the .os into a few dozen .a static libraries (libemu.a for src/emu, namco.a
> for Namco games, and so on) and then links all the libraries together.
>
> Also, there have been significant changes to how drivlist.c is handled since 0.139.

While it's true that archives are generated from the .o's, they are not treated as static libraries. If they were, you could use ld as the linker instead of g++. As it is now, g++ links every .a and .o together in one step. This negates the benefit of using static libraries, and you might as well be linking every .o and not have .a's at all. If you try to use ld to link MAME, you will realize that there are dependency cycles in the .a's and they can't actually be used as static libraries. This means that build systems like NDK (android) which depend on linking code with ld can't handle MAME's current architecture.


Check out MAMEHub here: http://www.mamehub.info/







Entire thread
Subject Posted by Posted on
* Faster MAMEhub released and our new web site zambr 09/03/11 02:01 PM
. * Re: Faster MAMEhub released and our new web site R. Belmont  09/03/11 08:36 PM
. * Re: Faster MAMEhub released and our new web site Digitalghost  09/07/11 08:41 AM
. * Re: Faster MAMEhub released and our new web site Outrun2006  09/08/11 10:09 AM
. * Re: Faster MAMEhub released and our new web site R. Belmont  09/07/11 07:43 PM
. * Re: Faster MAMEhub released and our new web site Digitalghost  09/07/11 07:55 PM
. * Re: Faster MAMEhub released and our new web site R. Belmont  09/07/11 08:05 PM
. * Re: Faster MAMEhub released and our new web site Digitalghost  09/07/11 08:16 PM
. * Re: Faster MAMEhub released and our new web site R. Belmont  09/07/11 08:22 PM
. * Re: Faster MAMEhub released and our new web site Terra Cresta  09/08/11 12:30 AM
. * Re: Faster MAMEhub released and our new web site 9ofzeven  09/03/11 03:40 PM
. * Re: Faster MAMEhub released and our new web site CTOJAH  09/03/11 02:33 PM
. * Re: Faster MAMEhub released and our new web site zambr  09/03/11 02:39 PM

Extra information Permissions
Moderator:  John IV, Robbbert, Tafoid 
0 registered and 186 anonymous users are browsing this forum.
You cannot start new topics
You cannot reply to topics
HTML is enabled
UBBCode is enabled
Thread views: 3184