forked from boostorg/config
Add Comeau defines
[SVN r10678]
This commit is contained in:
@ -70,6 +70,14 @@ int main()
|
||||
|
||||
// compilers
|
||||
|
||||
# ifdef __COMO__
|
||||
cout << "__COMO__ defined as " << __COMO__ << "\n";
|
||||
# endif
|
||||
|
||||
# ifdef __COMO_VERSION__
|
||||
cout << "__COMO_VERSION__ defined as " << __COMO_VERSION__ << "\n";
|
||||
# endif
|
||||
|
||||
# ifdef __GNUC__
|
||||
cout << "__GNUC__ defined as " << __GNUC__ << "\n";
|
||||
# endif
|
||||
@ -78,6 +86,10 @@ int main()
|
||||
cout << "__GNUC_MINOR__ defined as " << __GNUC_MINOR__ << "\n";
|
||||
# endif
|
||||
|
||||
# ifdef __EDG__
|
||||
cout << "__EDG__ defined as " << __EDG__ << "\n";
|
||||
# endif
|
||||
|
||||
# ifdef __EDG_VERSION__
|
||||
cout << "__EDG_VERSION__ defined as " << __EDG_VERSION__ << "\n";
|
||||
# endif
|
||||
|
Reference in New Issue
Block a user