Search:

Type: Posts; User: stahta01

Page 1 of 20 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    2,941

    The OP needs to know that the compiled packages...

    The OP needs to know that the compiled packages are designed to be ran under the MSys2 MinGW environments.

    Tim S.
  2. No; But, I think "spaces" versus "tabs" is a...

    No; But, I think "spaces" versus "tabs" is a religious split.

    Tim S.
  3. MinGW GCC uses binutils to provide ld just as I...

    MinGW GCC uses binutils to provide ld just as I think Linux does.

    Tim S.
  4. Replies
    9
    Views
    2,086

    The above is mostly false; because the freed area...

    The above is mostly false; because the freed area will be re-used sometimes.

    Tim S.
  5. You need to pass the array size to the functions...

    You need to pass the array size to the functions

    In other words,


    while(one[z])

    Is not valid/safe code.

    Tim S.
  6. So, you do not think "TCC" code was optimized to...

    So, you do not think "TCC" code was optimized to compile better with TCC than with GCC?

    Sorry, but, I think that is a stupid idea if you really believe that.

    Tim S.
  7. You do understand that 2 is the smallest prime...

    You do understand that 2 is the smallest prime number, correct?

    If you do not understand that then this problem is not one you can solve till you understand more about prime numbers.

    Therefore...
  8. Prime number - Wikipedia...

    Prime number - Wikipedia
  9. Wow, you are truly ignorant about math. ...

    Wow, you are truly ignorant about math.

    Goodbye.

    Tim S.
  10. 1 is defined as not prime! Tim S.

    1 is defined as not prime!

    Tim S.
  11. 191 * 3 = 573 Tim S.

    191 * 3 = 573

    Tim S.
  12. Replies
    6
    Views
    1,581

    char cStrtoNum[11] = { '\0' }; I would try ...

    char cStrtoNum[11] = { '\0' };

    I would try


    char cStrtoNum[13] = { '\0' };

    Because I think your for loop is going one too much.

    Note: That would mean
  13. Replies
    8
    Views
    3,677

    I have decided just to remove the single quotes...

    I have decided just to remove the single quotes for now.

    Any reason the Author needed single quotes around filenames under Linux?

    Tim S.
  14. Replies
    8
    Views
    3,677

    Found the cause; but, not yet the solution. ...

    Found the cause; but, not yet the solution.


    Cannot open file ''atol.s'': No such file or directory

    Those are two sets of single quotes not a double quotes.

    Single quotes around a filename...
  15. Replies
    8
    Views
    3,677

    Using CB Debugger, the file is created and later...

    Using CB Debugger, the file is created and later deleted.

    The line below is calling the program that cannot find the file.


    int status = invokeAssembler(asmFilename, compilationOutputFilename,...
  16. Replies
    8
    Views
    3,677

    Was running it as part of building the compiler...

    Was running it as part of building the compiler using configure/make build method.
    I spend the last few hours moving the code into an Code::Blocks project; used the same MinGW GCC 32 bit compiler;...
  17. Replies
    8
    Views
    3,677

    Can anyone tell me how to get the location the...

    Can anyone tell me how to get the location the file is being saved into?

    Edit: I am trying the below

    cout << "Current path is " << std::filesystem::current_path() << endl;

    Tim S.
  18. Replies
    8
    Views
    3,677

    Code failing to create file

    I am trying to build some third party code that is an compiler for the old MC6809 CPU.



    /* Create an asm file that will receive the assembly language code:
    */
    if...
  19. I was told that Geany was able to build C...

    I was told that Geany was able to build C Makefile Projects in the past Home
    | Geany

    You are asking for an IDE program.

    Tim S.
  20. Are you really trying to build GIMP 2.6.0 from...

    Are you really trying to build GIMP 2.6.0 from 2009 ?

    Tim S.
  21. Random guess you are missing the GTL devel...

    Random guess you are missing the GTL devel packages that contains the GTK headers.

    Tim S.
  22. The scanf is wrong. The &guess should not be in...

    The scanf is wrong. The &guess should not be in quotes.
  23. Replies
    2
    Views
    2,667

    class Human Likely in the code you compiled...

    class Human

    Likely in the code you compiled you used "human" instead of "Human".

    If you have fixed that already delete the object files and rebuild all.



    };
  24. FYI: "||" means or

    FYI: "||" means or
  25. You might need an linker option or a different...

    You might need an linker option or a different compiler/toolchain both are just guesses.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4