Page 1 of 1
C++ in Codelite
Posted: Mon Oct 27, 2014 10:38 am
by Teena K
hi,
I am currently doing a migration project from different OS to Linux OS for C++.while building some downloaded programmes in Codelite installed in windows,i got the error for Int86() Function.Is there any Alternative for int86().
Re: C++ in Codelite
Posted: Mon Oct 27, 2014 10:50 am
by eranif
Note that your question is not related to codelite - you are getting a compiler error and codelite is not a compiler
Eran
Re: C++ in Codelite
Posted: Wed Oct 29, 2014 2:49 am
by Gibbon1
Google says int86() is a DOS specific function used to call interrupts. So not only it this not a codelite problem, it's not even a compiler problem. Which is good you're 2/3 of the way there
Either one of two things is going on.
If your code is set up to be multi platform you need to configure it to work on Linux. Not configured correctly.
Or you have some code that is specific to DOS that you need to port to Linux.
Re: C++ in Codelite
Posted: Wed Nov 12, 2014 9:10 am
by spaces
Teena K wrote:Int86() Function.
Please allow me 1 minute quiet contemplation. .... Ty, I haven't heard that function name for like 20 years straight.
Anyway, programming interrupts is truly the thing of the past. Unless you do some kernel level embeded programming. If you still need advice please link the func call and its context.