Skip to content

Commit 1c6fac8

Browse files
committed
fix: limit build to clang 10 and less
1 parent 26536a5 commit 1c6fac8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

recipes/ogre/1.x/conanfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ def validate(self):
131131
"""
132132
if self.settings.compiler == "gcc" and tools.Version(self.settings.compiler.version) >= 11:
133133
raise ConanInvalidConfiguration("OGRE 1.x not supported with gcc version greater than 11")
134-
if self.settings.compiler == "clang" and tools.Version(self.settings.compiler.version) >= 13:
135-
raise ConanInvalidConfiguration("OGRE 1.x not supported with clang version greater than 13")
134+
if self.settings.compiler == "clang" and tools.Version(self.settings.compiler.version) >= 11:
135+
raise ConanInvalidConfiguration("OGRE 1.x not supported with clang version greater than 11")
136136

137137
@property
138138
def _source_subfolder(self):

0 commit comments

Comments
 (0)