Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e39607f

Browse files
committed
Changed the #error to a #warning when checking gcc versions, and
noted the minimum recommended version in the message.
1 parent 69db0e4 commit e39607f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PC/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ compiler specific". Therefore, these should be very rare.
3131
compiler don't exhibit this bug.
3232
*/
3333
#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
34-
#error "Please use an up-to-date version of gcc"
34+
#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
3535
#endif
3636

3737
/*

0 commit comments

Comments
 (0)