diff options
-rw-r--r-- | meson.build | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/meson.build b/meson.build index 316abdb8..59293e47 100644 --- a/meson.build +++ b/meson.build @@ -146,16 +146,8 @@ if cc.get_id() == 'clang' endif if cc.get_id() == 'gcc' - if cc.version().version_compare('<8') - error('gcc version is too old, libcamera requires 8.0 or newer') - endif - - # On gcc 8, the file system library is provided in a separate static - # library. if cc.version().version_compare('<9') - cpp_arguments += [ - '-lstdc++fs', - ] + error('gcc version is too old, libcamera requires 9.0 or newer') endif # gcc 13 implements the C++23 version of automatic move from local |