Skip to content

Commit

Permalink
remove some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Sep 9, 2022
1 parent 7a10117 commit 5235d75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 1 addition & 3 deletions recipes/mold/1.3.1/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ def _patch_sources(self):
if self.settings.compiler == "apple-clang" or (self.settings.compiler == "gcc" and Version(self.settings.compiler.version) < "11"):
files.replace_in_file(self, "source_subfolder/Makefile", "-std=c++20", "-std=c++2a")

files.replace_in_file(self, "source_subfolder/Makefile", "-Ithird-party/xxhash ", "-I{} -I{} -I{} -I{} -I{}".format(
files.replace_in_file(self, "source_subfolder/Makefile", "-Ithird-party/xxhash ", "-I{} -I{} -I{} -I{} ".format(
self._get_include_path("zlib"),
self._get_include_path("openssl"),
self._get_include_path("xxhash"),
self._get_include_path("mimalloc"),
self._get_include_path("onetbb")
Expand All @@ -69,7 +68,6 @@ def build_requirements(self):

def requirements(self):
self.requires("zlib/1.2.12")
self.requires("openssl/1.1.1q")
self.requires("xxhash/0.8.1")
self.requires("onetbb/2021.3.0")
self.requires("mimalloc/2.0.6")
Expand Down
2 changes: 0 additions & 2 deletions recipes/mold/1.4.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ def build_requirements(self):

def requirements(self):
self.requires("zlib/1.2.12")
self.requires("openssl/1.1.1q")
self.requires("xxhash/0.8.1")
self.requires("onetbb/2021.3.0")
if self.options.with_mimalloc:
self.requires("mimalloc/2.0.6")
Expand Down

0 comments on commit 5235d75

Please sign in to comment.