-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: iceseer <iceseer@gmail.com>
- Loading branch information
Showing
162 changed files
with
2,901 additions
and
1,585 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ hunter_config( | |
|
||
hunter_config( | ||
libp2p | ||
VERSION 0.1.7 | ||
VERSION 0.1.8 | ||
KEEP_PACKAGE_SOURCES | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/clang-11.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/clang-11.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/linker/mold.cmake) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/clang-15.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/clang-15.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/linker/mold.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
cmake/toolchain/compiler/gcc-9.cmake → cmake/toolchain/compiler/gcc-10.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/gcc-10.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/gcc-10.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/linker/mold.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/gcc-12.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/compiler/gcc-12.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/cxx17.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/linker/mold.cmake) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright (c) 2014, Ruslan Baratov | ||
# All rights reserved. | ||
|
||
if (DEFINED POLLY_FLAGS_LINKER_MOLD_CMAKE_) | ||
return() | ||
else () | ||
set(POLLY_FLAGS_LINKER_MOLD_CMAKE_ 1) | ||
endif () | ||
|
||
find_program(MOLD_FOUND mold) | ||
if(NOT MOLD_FOUND) | ||
fatal_error("mold not found") | ||
endif() | ||
|
||
include(${CMAKE_CURRENT_LIST_DIR}/../../add_cache_flag.cmake) | ||
add_cache_flag(CMAKE_EXE_LINKER_FLAGS -fuse-ld=mold) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.