Results 1 to 10 of 10

Thread: cygwin help

                  
   
  1. #1
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default cygwin help

    hello i have a problem installing cygwin on my system..when im in the DOS window and i type ./kos-svn.sh install it goes through the process but a error comes up when it says Downloading highest_full to determine latest full version
    right after this it says
    ./kos-svn.sh: line 77: wget:Command not found

    i went to that line and saw a wget line
    so i was wondering if anyone had any advice on how to fix this


  2. #2
    DCEmu Coder
    Join Date
    Apr 2004
    Posts
    227
    Rep Power
    74

    Default Re: cygwin help

    Install wget. It's in the Cygwin installer program somewhere.

  3. #3
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default Re: cygwin help

    well i installed everything that came with the cygwin installer so idont know why that wouldnt be in there but ill check for it later

  4. #4
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default Re: cygwin help

    thanks alot BlackAura it didnt have WGET although i dont know why i downloaded it from a website though..so thanks ;D

  5. #5
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default Re: cygwin help

    ok well now after that i have run into another error...here is a picture

    http://81.99.81.238/Tiri/picture.jpg

  6. #6
    DCEmu Coder
    Join Date
    Apr 2004
    Posts
    227
    Rep Power
    74

    Default Re: cygwin help

    Looks like a problem with subversion...

    The only thing I can think of is that you're using Windows ME, by the looks of things. A few of the Cygwin tools don't work properly on Windows ME, and only work correctly on Windows 2000 or Windows XP.

    You could try using a SVN snapshot instead. Basically, you download some archives from http://gamedev.allusion.net/svn/snapshots/

    It might help if I knew which scripts or instructions you were using.

  7. #7
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default Re: cygwin help

    im using these two guides from the site to try and get the thing to run

    -Ragnorak's Development Subversion Build Script (KOS 1.2.x, 1.3.x)
    http://s90112106.onlinehome.us/dna/article12.htm-Ragnorak's Development Subversion Build Script (KOS 1.2.x, 1.3.x)

    http://www.ryanwarner.org/~deeroc/junk/dcdev-env.html -Making a DCDev Environment by Dee Roc

    yes im also running on windows ME so you guessed that correct
    im using the prebuilt KOS that you made
    and kos subversion 1.1.0rc3

  8. #8
    DCEmu Coder
    Join Date
    Apr 2004
    Posts
    227
    Rep Power
    74

    Default Re: cygwin help

    OK... Looks like we might have to try compiling things manually.

    First off, we'll need to get a version of KOS before it started using newlib. Using newlib requires a different toolchain, and my precompiled ones aren't set up to deal with newlib.

    Download these two files somewhere. C:\Cygwin\home\default should be good.

    http://gamedev.allusion.net/svn/snap...newlib.tar.bz2
    http://gamedev.allusion.net/svn/snap...newlib.tar.bz2

    Now, remove the line from your c:\cygwin\etc\profile (as mentioned in the first article you linked to). It'll get in the way when using the SVN version.

    Start Cygwin, and type this:
    Code:
    mkdir -p /usr/local/dc/kos-svn
    cd /usr/local/dc/kos-svn
    tar -xjf ~/kos-ports*
    tar -xjf ~/kos-snap*
    That should leave you with the SVN version of KOS in C:\Cygwin\usr\local\dc\kos-svn

    Now, you need to edit the KOS configuration files. Go to the main KOS directory (c:\cygwin\usr\local\dc\kos-svn\kos), find the "doc" directory, and look for environ.sh.sample

    Copy this file to the KOS directory, and rename it "environ.sh"

    Now, open it in a text editor. Find this line:
    Code:
    export KOS_BASE="/usr/local/home/bard/prj/svn/kos"
    and replace with:
    Code:
    export KOS_BASE="/usr/local/dc/kos-svn/kos"
    Then replace this bit:
    Code:
    export KOS_CC_BASE="/usr/local/dc/dc-elf"
    export KOS_CC_PREFIX="dc"
    #export KOS_CC_BASE="/usr/local/dc/sh-elf"       # DC
    #export KOS_CC_PREFIX="sh-elf"
    with this bit:
    Code:
    #export KOS_CC_BASE="/usr/local/dc/dc-elf"
    #export KOS_CC_PREFIX="dc"
    export KOS_CC_BASE="/usr/local/dc/sh-elf"       # DC
    export KOS_CC_PREFIX="sh-elf"
    Save that, and return to Cygwin. Type this:
    Code:
    cd /usr/local/dc/kos-svn/kos
    source environ.sh
    Now, we should be ready to try to compile. Type "make" and see if it works. Chances are there will be some compile errors. Post them, and I'll see if I can fix them.

  9. #9
    DCEmu Newbie
    Join Date
    Sep 2004
    Location
    USA
    Posts
    11
    Rep Power
    0

    Default Re: cygwin help

    ok i did all that stuff but when i type "make" in, it says this

    BASH: make: command not found

    i think this is just like the wget the exe isnt there for some reason ??? but i dont really know

  10. #10
    DCEmu Coder
    Join Date
    Apr 2004
    Posts
    227
    Rep Power
    74

    Default Re: cygwin help

    Do'h!

    You need to install pretty much everything under the "Development" section in Cygwin.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

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
  •