|
|
| using allegro timers in C++ programs |
|
Alexis FREY
Member #5,164
October 2004
|
Hello to everybody - - - - - - - - - - - - - - - - - - |
|
Fladimir da Gorf
Member #1,565
October 2001
|
Have you tried the following? OpenLayer has reached a random SVN version number ;) | Online manual | Installation video!| MSVC projects now possible with cmake | Now alvailable as a Dev-C++ Devpack! (Thanks to Kotori) |
|
Alexis FREY
Member #5,164
October 2004
|
First Fladimir da Gorf, I want to thank you, I haven't expected such a short-in time answer. - - - - - - - - - - - - - - - - - - |
|
da_flo
Member #1,907
February 2002
|
Quote: he compilation failed with the error :" c:/djgpp/tmp/ccf7xMoz.o(.eh_frame+0X11) : essai.cpp : undefined reference to '___gxx_personality_vO' collect 2 : Id returned 1 exit status. It is a linker error, and I think this occured because you forgot to link with the standard C++ library ( in C libc is automatically taken into account but in C++ you need to explicitely link with libstdc++ ). Use gcc essai.cpp -o essai.exe -lalleg -lstdc++ to compile. Note that you can also use g++ instead of gcc, which I think is a good habit when you know you are doing C++, even though gcc will call g++ if necessary without saying you a word |
|
decsonic
Member #4,150
December 2003
|
Please some indentation in your post and use the code tags Programmer's paranoia: Don't trust anybody's code, not even your own. |
|
Marco Radaelli
Member #3,028
December 2002
|
I've compiled your code. decsonic said: Please some indentation in your post and use the code tags (in the future ) .
He means this
|
|
Alexis FREY
Member #5,164
October 2004
|
Thank you da_flo as well as Marco Radaelli. - - - - - - - - - - - - - - - - - - |
|
Marco Radaelli
Member #3,028
December 2002
|
Alexis FREY said: I'm not yet accostumed with all the features in posting message for underlining the important points
It takes some time for everyone. While waiting, click me Welcome to the Allegro community
|
|
Alexis FREY
Member #5,164
October 2004
|
Marco Radaelli said: While waiting, click me
OK, thank you Marco, I haven't understand first when you have written it, but now I can see, it just works like html code. - - - - - - - - - - - - - - - - - - |
|
|