Skip to content

Commit

Permalink
drop support clang
Browse files Browse the repository at this point in the history
  • Loading branch information
toge committed Nov 12, 2023
1 parent c5206f3 commit d4dfca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion recipes/simd/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from conan.tools.files import get, copy, rmdir
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
from conan.tools.scm import Version
import os


Expand Down Expand Up @@ -48,6 +47,8 @@ def layout(self):
def validate(self):
if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
if self.settings.compiler == "clang":
raise ConanInvalidConfiguration(f"{self.ref} don't support clang. (yet)")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down
2 changes: 1 addition & 1 deletion recipes/uwebsockets/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def requirements(self):
if self.options.with_zlib:
self.requires("zlib/[>=1.2.11 <2]")
if self.options.get_safe("with_libdeflate"):
self.requires("libdeflate/1.14")
self.requires("libdeflate/1.19")

if Version(self.version) > "20.17.0":
self.requires("usockets/0.8.6")
Expand Down

0 comments on commit d4dfca7

Please sign in to comment.