I am developing a system that must be fully POSIX compatible
I am developing this on Fedora Core 14 with gcc and c++
I do not want to use anything that is not POSIX
How do I ensure I maintain this?
is there a compiler setting?
I am using Codeblocks
|
|
|
No, there's no "magic compiler switch" to insure you use only Posix APIs. You can get the POSIX spec here: This suite allows you to check your application for conformance to the POSIX API: |
|||
|
|
This does not really have anything to do with the compiler. POSIX specifies utilities, interfaces and the accompanying header files - the compiler is only concerned with the specifics of the programming language. That said, if the header file set that you are using is well-implemented you should be able to enable/disable the feature sets that you are using with proper For example including |
|||
|
|