diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-12 06:15:34 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-12 06:15:34 (GMT) |
commit | 966f7eb6242cca891b52a0fe4f52775a086c9cd9 (patch) | |
tree | 9d8f2ab986125e3c6c50eeef67967ecffa8e025c /src | |
parent | 6987ac927907bd2440abd8336cf6fa095a984bab (diff) |
#514 Change gcc 4.8.2 version check error to a warning
Diffstat (limited to 'src')
-rw-r--r-- | src/version_check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version_check.h b/src/version_check.h index be52e61..2688f2a 100644 --- a/src/version_check.h +++ b/src/version_check.h @@ -113,7 +113,7 @@ a time, to avoid confusion. + __GNUC_MINOR__ * 100 \ + __GNUC_PATCHLEVEL__) #if GCC_VERSION == 40802 -#error "OpenSCAD isnt compatible with gcc 4.8.2. Please try a different version" +#warning "gcc 4.8.2 contains a bug causing a crash in CGAL." #endif #endif // OPENSCAD_SKIP_VERSION_CHECK |