Search:

Type: Posts; User: OSDever

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,950

    Now I feel like an idiot. -v is obviously...

    Now I feel like an idiot. -v is obviously verbose. I've used enough *nix/BSDs that I should have known that.

    It turned out that there was a whole pile of linker tags to use. For future record,...
  2. Replies
    10
    Views
    1,950

    If you would read my post, you would see that I...

    If you would read my post, you would see that I am compiling a large number of files, and I don't want to have to re-compile every time. It would be much easier and faster to link the old object to...
  3. Replies
    10
    Views
    1,950

    When you are compiling 50 or 60 files, you can't...

    When you are compiling 50 or 60 files, you can't say
    g++ -o program.app file1.cpp file2.cpp file3.cpp file4.cpp file5.cpp file6.cpp... I don't feel like setting up a makefile for this project, but...
  4. Replies
    10
    Views
    1,950

    That was my mistake. I typed gcc when I meant...

    That was my mistake. I typed gcc when I meant g++. I have been using g++. I know there is a way to divide compilation and linking in c++, because I've done it before. Saddly, I don't have any of...
  5. Replies
    10
    Views
    1,950

    Compilation problem

    I have a very strange and elusive problem. I am compiling a multi-file program. When I use
    gcc -o program.app file1.cpp file2.cpp
    It works, but when I use this code:

    gcc -c file1.cpp
    gcc -c...
  6. Replies
    0
    Views
    963

    Macintosh Cocoa Question

    I'm currently trying to program an application that when the Start button is pushed, will start a different part of the application, return(so as not to show the twirling color wheel, and to allow...
  7. Replies
    14
    Views
    4,257

    Maybe I can help on this one. Cocoa and...

    Maybe I can help on this one. Cocoa and Objective C are nothing but systems to communicate with a UI made with Interface Builder. You can use C or C++ in your ObjC files, by suffixing your files...
  8. Replies
    6
    Views
    2,537

    Audacity may be just What I need. Thanks for...

    Audacity may be just What I need. Thanks for your help guys! :)
  9. Replies
    6
    Views
    2,537

    I'm looking at the ones that you are showing, and...

    I'm looking at the ones that you are showing, and they seem to lack one feature that I forgot to mention. I need the program to combine and then play out the the speakers. This system will be...
  10. Replies
    6
    Views
    2,537

    I'm looking for a program...

    I'm looking for a program that will make a Linux or (hopefully not) Windows machine, and act just like an 11 channel microphone mixer, amp, and recorder. I hope that somone has seen something like...
  11. Thread: N00bie to C++

    by OSDever
    Replies
    14
    Views
    1,467

    Wow, all these 15 year olds programming! That's...

    Wow, all these 15 year olds programming! That's great! I started a bit earlier, but that's a different story. One of the best things to do is look at your library. Most systems will have at least...
  12. Thread: getchar

    by OSDever
    Replies
    4
    Views
    4,201

    getchar() does not do the same thing as getch(). ...

    getchar() does not do the same thing as getch(). I began my coding on a Mac, and had a similiar problem. I have some code that will emulate getch(), but I need to find it. I'll look for it and...
  13. Replies
    2
    Views
    888

    Hmmmmmmmm, I had forgotten about seperate memory...

    Hmmmmmmmm, I had forgotten about seperate memory sections. Looks like back to the drawing board! Is there any way for me to run two programs and have them share an object?
  14. Replies
    2
    Views
    888

    EXECing to another program

    I'm writing a program that needs to have two processes running at the same time. I have found through some research that the best way to do this would be to use a handler program that would exec to...
  15. Replies
    4
    Views
    2,350

    I looked at the binary again, and noticed that ...

    I looked at the binary again, and noticed that
    __gxx_personality_v0 comes after the _sayhi() function (which by the way is written in assembly, in nasmfunctions.s). Seeing that the first file...
  16. Replies
    4
    Views
    2,350

    Uh,Huh... I see what you mean. :( So is there...

    Uh,Huh... I see what you mean. :( So is there a way that I can get rid of this, or am I stuck with C? I'm not to good with the more advanced C principles, though many are similiar to C++, and the...
  17. Replies
    4
    Views
    2,350

    Why is this in my object code?

    I'm back with writing my OS, and I have problem. I compile the kernel.cpp file with g++, the loader.s file with as, and the nasmfunctions.s file with NASM, then link them together. I have it down...
  18. Replies
    11
    Views
    1,933

    Thanks, it's a great tuturial. Only one problem....

    Thanks, it's a great tuturial. Only one problem. I'm using the GRUB bootloader, and I have my multiboot header. I must compile this with as, and the code in the tuturial must be compiled with...
  19. Replies
    27
    Views
    16,339

    The first int x is not needed. It is declared in...

    The first int x is not needed. It is declared in the FOR loop.
  20. Replies
    11
    Views
    1,933

    I am using Red Hat 9, and I'm writing the OS from...

    I am using Red Hat 9, and I'm writing the OS from scratch.
  21. Replies
    11
    Views
    1,933

    Printing to the screen without a library.

    I need to write to the screen for my OS, and I can't find a good way to do it. I have seen several assembly codes, but I can't find one that will do the job. One in C++ would be even better! I'm...
Results 1 to 21 of 21