Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/add ofeli #8375

Merged
merged 13 commits into from
Jan 5, 2022
6 changes: 0 additions & 6 deletions recipes/ofeli/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ def validate(self):
if self.settings.compiler != "gcc":
raise ConanInvalidConfiguration(
"Ofeli is just supported for GCC")
if self.settings.compiler.cppstd:
tools.check_min_cppstd(self, 11)
Kr4is marked this conversation as resolved.
Show resolved Hide resolved

Kr4is marked this conversation as resolved.
Show resolved Hide resolved
def source(self):
tools.get(**self.conan_data["sources"][self.version],
Expand All @@ -50,10 +48,6 @@ def _configure_autotools(self):
self._autotools.configure(args=["--enable-release"])
Kr4is marked this conversation as resolved.
Show resolved Hide resolved
return self._autotools

def configure(self):
if self.settings.os == "Linux":
self.settings.compiler.libcxx = "libstdc++11"

def build(self):
with tools.chdir(self._source_subfolder):
autotools = self._configure_autotools()
Expand Down
3 changes: 0 additions & 3 deletions recipes/ofeli/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ class TestPackageConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "cmake"

def config_options(self):
self.settings.compiler.libcxx = "libstdc++11"

def build(self):
cmake = CMake(self)
cmake.configure()
Expand Down