Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Compiling Advancemame .92 can anybody help  (Read 1095 times)

0 Members and 1 Guest are viewing this topic.

GMZombie

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 379
  • Last login:March 22, 2022, 10:11:23 am
  • I am a living Legend who fixes stuff... mostly
Compiling Advancemame .92 can anybody help
« on: February 23, 2005, 02:48:41 am »
ok i want to add the no nag patch to my advancemame but i do not know how to compile it.....if anybody can help me that would be greatly appriciated....i would like to compile it myself but i dont know where to start....so ifd anybody can give me a manual on how to compile and what to use for it and all that ---steaming pile of meadow muffin--- i might be able to get the person a shiny cd with some neat mame stuff on it. ;)

elvis

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1154
  • Last login:January 13, 2025, 08:48:40 am
  • penguin poker
    • StickFreaks
Re: Compiling Advancemame .92 can anybody help
« Reply #1 on: February 23, 2005, 02:53:30 am »
Are you compiling under Linux, *BSD, MacOSX, DOS or Windows?

GMZombie

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 379
  • Last login:March 22, 2022, 10:11:23 am
  • I am a living Legend who fixes stuff... mostly
Re: Compiling Advancemame .92 can anybody help
« Reply #2 on: February 23, 2005, 03:03:48 am »
i have mandrake linux 10 or i can do it under windows xp professional either or

Thenasty

  • Trade Count: (+17)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 4420
  • Last login:Yesterday at 12:46:10 pm
    • Thenasty's Arcademania Horizontal/Vertical monitor setup.
Re: Compiling Advancemame .92 can anybody help
« Reply #3 on: February 23, 2005, 09:16:14 am »
I don't know if it the same with Linux foir the RC file, but i have been using Advmame and my last compiling was 059 cause I also wnated the nonag stuff gone but, now i have not compiled it yet but I notice that if youe have 1 in Misc_quiet, it does not show any info at all. A good game to try it is SAURO which reports sound is not good (100%). Is it different in Linux ?
Thenasty's Arcademania Horizontal/Vertical setup.
http://forum.arcadecontrols.com/index.php?topic=26696.0

Free VGA Breakout Cable
http://forum.arcadecontrols.com/index.php?topic=38228.0

Ultimate All in One Coin Mech write up (Make your own)
http://forum.arcadecontrols.com/index.php?topic=19200.0

ahmer

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 234
  • Last login:March 16, 2014, 02:40:21 pm
  • Do as you like.
    • IC Markets Rebates and Discount
Re: Compiling Advancemame .92 can anybody help
« Reply #4 on: February 23, 2005, 12:01:48 pm »
Does advance Mame Dos version compile in Linux only ???

Can't we compile it with in Windows or Dos?

elvis

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1154
  • Last login:January 13, 2025, 08:48:40 am
  • penguin poker
    • StickFreaks
Re: Compiling Advancemame .92 can anybody help
« Reply #5 on: February 23, 2005, 04:12:37 pm »
Compiling things in linux is pretty easy:

1) Ensure you have the correct external files for the libraries you need.  If you want to compile MAME to run under X-Windows, you'll need the SDL libraries.  Under Mandrake, use URPMI (Or "Mandrake Update") to search for the SDL and SDL-dev packages, and install them.  Ditto for ALSA and ALSA-dev.  If you don't have the development and compiler packages like gcc, g++, make, and so on installed, you'll need them too.

From here you'll need a terminal ("command prompt").

2) Change to the folder that has the advancemame source, and decompress it.  "tar xvzf sourcename.tar.gz" will do that for you, and create a folder underneath the current one with the contents of the file.

3) Change into the newly created folder.  At the command prompt, type "./configure" (without the quotes, of course).  It's important to remember the "./" (dot-slash) bit at the front.

The autoconfiguration program will now run, figuring out where all your development programs and files live.

4) Once that's done, and if you don't get any errors, you're ready to compile!  Simply type "make" and the program will compile (this will take quite some time).  Once it's complete (and again, you don't see any errors) type "sudo make install".

To install programs under Linux, you must be an administrator (hence why it's difficult for viruses and spyware to work under linux, but I'll get off that soapbox for a minute).  "sudo" is the linux command to temporarily promote your privaledges to a single command, and then revert your status.  (It stands for Super User Do).  It will ask you for a password, which will be the root password.  Alternatively you can manually promote yourself to root using the "su" command, run "make install", and then exit out of root's login after that.

Now, assuming you've had all the right development files installed and get no errors, advancemame will now be compiled and installed.

If you get any errors along the way, post them here and I'll help you track down the cause, and get you up and running.