Thread: libraries

  1. #1
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608

    libraries

    I am planning to use sdl for the grpahics library in a game i am amking but does anyone know of any sound libraries i can get for free. i am programming intoa console application dev c++ 4.
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  2. #2
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    Sure. OpenAL (not the greatest) is there but DirectSound is better.

  3. #3
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    I read your post and understood every word in it, but for whatever reason the fact that you say your are making a console application didn't click in my brain until after I posted my reply. You can't exactly make graphics in your console app. You can make ascii art. There is always DOS, but that isn't what you are talking about since you use mingw and that is a win32 only compiler. SDL will handle the windows end for you but just so you know your program will actually be a windows app not a console app.

  4. #4
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    ive seen othur console apps using grpahics
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  5. #5
    x4000 Ruski's Avatar
    Join Date
    Jun 2002
    Location
    Outer Space!
    Posts
    542
    Question: What is mingw ??
    what does signature stand for?

  6. #6
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    did i say that as a typo somewhere?
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  7. #7
    x4000 Ruski's Avatar
    Join Date
    Jun 2002
    Location
    Outer Space!
    Posts
    542
    was for master5001 actaully
    what does signature stand for?

  8. #8
    Registered User
    Join Date
    Jan 2002
    Posts
    387
    >>Question: What is mingw ??

    MinGW is the compiler behind the Dev-C++ IDE
    "There are three kinds of people in the world...
    Those that can count and those that can't."

  9. #9
    x4000 Ruski's Avatar
    Join Date
    Jun 2002
    Location
    Outer Space!
    Posts
    542
    And what will happen without it ?
    what does signature stand for?

  10. #10
    Registered User
    Join Date
    Jan 2002
    Posts
    387
    if you dont have MinGW (or if you 'take it out') then i think you can chose to use the cygwin compiler, but without a compiler, Dev-C++ would be only a text-editor, and not an IDE. Some people get confused and say Dev-C++ is a compiler, but its not.
    "There are three kinds of people in the world...
    Those that can count and those that can't."

  11. #11
    Registered User
    Join Date
    Jul 2002
    Posts
    3
    Originally posted by Okiesmokie
    if you dont have MinGW (or if you 'take it out') then i think you can chose to use the cygwin compiler, but without a compiler, Dev-C++ would be only a text-editor, and not an IDE. Some people get confused and say Dev-C++ is a compiler, but its not.
    Thats right, Dev-C++ uses the GNU tools for compilation.

    Open a DOS Prompt, and enter...

    c:\dev-c++\bin\gcc -v

    or...

    c:\dev-c++\bin\g++ -v

    to get compiler version data. GCC.EXE is the C language compiler and G++.EXE the C++ compiler.

    Replace -v with --help to get info on the different CP switches that can be used.

  12. #12
    x4000 Ruski's Avatar
    Join Date
    Jun 2002
    Location
    Outer Space!
    Posts
    542
    Originally posted by Okiesmokie
    if you dont have MinGW (or if you 'take it out') then i think you can chose to use the cygwin compiler, but without a compiler, Dev-C++ would be only a text-editor, and not an IDE. Some people get confused and say Dev-C++ is a compiler, but its not.
    Ok, got it
    what does signature stand for?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. GCC: Compiling with both static and shared libraries
    By eatwithaspork in forum C Programming
    Replies: 4
    Last Post: 06-23-2008, 01:48 PM
  2. Replies: 7
    Last Post: 05-13-2008, 03:47 AM
  3. MinGW thread-safe runtime libraries
    By Mario F. in forum C++ Programming
    Replies: 3
    Last Post: 08-21-2006, 08:15 AM
  4. Libraries and headers
    By darksaidin in forum C++ Programming
    Replies: 10
    Last Post: 07-23-2003, 06:24 AM
  5. QT and external libraries
    By Quacker in forum Linux Programming
    Replies: 1
    Last Post: 04-08-2003, 07:02 AM