Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Fpc4Nds on ubuntu 10.10

  1. #1
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45

    Fpc4Nds on ubuntu 10.10

    Ah, hey legolas we appreciate your work, and I've read http://krachik.developpez.com/tutori...fpc4nds-setup/ and all the pages on the first few pages on google. No luck, so I tried them all again in virtual x86 xp with unity. Still no luck...

    So, you wouldn't happen to have an up to date tutorial on how to set up and link an application for nds? I have no idea what versions of what to use, where to put them or anything so a good step by step would be nice or if someone could post how they got theirs working with some files would be equally nice because I am totally lost. Either it cant find nds9, system can't launch ppc-yadaya, arm-eabias failed or it had some random error making some .s file which still doesn't give me an nds

    So all in all, really confused. Thanks for the help.
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  2. #2
    Uhm... Probably it's an issue related to different versions. Now I'm downloading and installing Ubuntu 10.10 in order to investigate.
    Get your fpc4gba copy now!
    Get your fpc4nds copy now!

  3. #3
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45
    Personally though, i do not think its ubuntu at fault since i get the same with 7 and xp. might be worth noting im runing x64 buntu? besides, i think its down to software versions mlre than anything since i heard certain versions of fpc4nds work with certain revs from devkit...

    besides all that buntu 10.10 is simply outstandimg i doubt yoh will want to go back, i hqd to move from win but ubuntu made painless so yay.
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  4. #4
    Yeah, I mean different fpc4nds and devkitARM versions. That guide refers to outdated packages, so the only way to make things working again is: (1) install the very latest devkitARM and (2) recompile fpc4nds from svn trunk. Step (1) should be trivial; step (2) is a bit more tricky. Telling long story short, there isn't a step-by-step guide about building fpc4nds on linux, but the one I wrote about building powerpc-wii on Windows is pretty much the same thing, it just needs some obvious changes. About the x64 question, I don't know, sorry, but if there is a x64->arm crosscompiler, then it should work.

    By the way, I'm thinking about building some snapshots and keeping them updated, because the different release timing between fpc and devkitARM. This way, when a new devkitARM version is released, I can update these snapshots, without waiting for a new fpc release.
    Get your fpc4gba copy now!
    Get your fpc4nds copy now!

  5. #5
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45
    Cheers for that, then I think I will have to stick with my XP virtual machine and use that with the svn version as per your site's instructions unlike a lot of other results on google (haha). Just to clear this up, what does run on NDS library wise? I would assume OpenGl at the least right? I doubt sdl is a go, so event handling will have to be re-written but if gl does not work, whats go for GFX?

    Oh, and a lite has 4mb ram right?

    cheers,
    code_glitch

    Edit:
    hum... Just tried out from SVN and as per this pages' instructions: http://itaprogaming.free.fr/index.php?x=p&pag=54 and all works well but it gives an error 127 for the units and libndsfpc which means the units folder is empty... ppcarm seems to work though. Any thoughts? This is on my XP Virtual Machine. double cheers.

    Edit2:
    Perhaps you could take everything from a point wherre it all works and put it into one package? That might work better for people since trying to hunt down versions is a bit of a pain... It seems as though the current devkitpro is r32 for ARM.
    Last edited by code_glitch; 27-03-2011 at 05:17 PM.
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  6. #6
    Here:

    ftp://ftp.freepascal.org/fpc/snapshot/trunk/arm-nds/

    I have uploaded the i386-linux package only, but a win32 version will follow soon.

    I'll upload the very last fpc4nds version from now on at this address, every time it is needed to update it, e.g. in case of devkitARM updates, so it should be easier to get a fresh working copy.

    Out of topic, I have made a small bash script to compile and make the i386-linux package. Because I'm not in linux at all, I can't find a way to copy only executable files from a directory to another. Any advice?
    Get your fpc4gba copy now!
    Get your fpc4nds copy now!

  7. #7
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45
    you may have to use sudo to get root access so:

    Code:
    sudo cp -r source_directory destination_directory

    should so. Giving fpc4nds a spin, but I get some access denied and segfaults. Trying to fix it atm.
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  8. #8
    Of course you will need to install devkitARM following this guide:

    http://devkitpro.org/wiki/Getting_Started/devkitARM

    then add the fpc4nds path to ~/.bashrc:

    export PATH=/opt/fpc4nds/bin/arm-nds:$PATH

    and reload it:

    source ~/.bashrc

    Add a file .fpc.cfg in your home directory:

    Code:
    #IFDEF nds
    -Tnds 
    -XParm-eabi- 
    -Fu/opt/fpc4nds/units/$fpctarget
    -Fu/opt/fpc4nds/units/$fpctarget/*
    -Fu/opt/fpc4nds/units/$fpctarget/rtl
    -Fu/opt/fpc4nds/units/$fpctarget/libndsfpc
    -FD/opt/fpc4nds/bin/arm-nds
    -Fl/opt/devkitPro/libnds/lib
    #IFDEF __THUMB__ 
     -Fl/opt/devkitPro/devkitARM/lib/gcc/arm-eabi/4.5.1/thumb
     -Fl/opt/devkitPro/devkitARM/arm-eabi/lib/thumb
    #ELSE 
     -Fl/opt/devkitPro/devkitARM/lib/gcc/arm-eabi/4.5.1
     -Fl/opt/devkitPro/devkitARM/arm-eabi/lib
    #ENDIF 
    #ENDIF nds
    I forgot to add a readme in the package...

    BTW, this is for 32 bit (tested on Ubuntu 10.10)


    About cp -r, I need to copy executable files only from a directory with mixed execs and .pas files. In windows I can do something like copy *.exe, but I can't find a suitable way to do the same thing in linux
    Get your fpc4gba copy now!
    Get your fpc4nds copy now!

  9. #9
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45
    cp -r recursively copies files. you can always do:
    [/code]
    sudo cp -r *.* /opt/fpc4nds/
    [/code]

    which will copy ALL files in the current directory to /opt/fpc4nds...


    About that .fpc.cfg - if you do that it compiles all your code to nds... I think I will set up a fpc4nds user and dump everything there
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  10. #10
    That, or (just read here) you can ignore the default fpc.cfg and pass another cfg file to the compiler:

    fpc -n @myconfigfile.cfg hello.pp
    Get your fpc4gba copy now!
    Get your fpc4nds copy now!

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •