Skip to content

Commit

Permalink
Enable using
Browse files Browse the repository at this point in the history
non-Apple, vanilla Clang.
Compiler ID.

Fixes #122
  • Loading branch information
John-LittleBearLabs committed Sep 25, 2024
1 parent 6dfe5f0 commit 1d0ecc3
Show file tree
Hide file tree
Showing 724 changed files with 142 additions and 21,757 deletions.
2 changes: 1 addition & 1 deletion .github/msvc.profile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ arch=x86_64
build_type=Release
compiler=msvc
compiler.version=193
compiler.cppstd=17
compiler.cppstd=20
compiler.runtime=dynamic
os=Windows
3 changes: 2 additions & 1 deletion .github/ut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ echo Install dependencies
sudo apt-get update
sudo apt-get install --yes cmake ninja-build lcov binutils doxygen graphviz libc6{,-dev} valgrind
npm install -g @marp-team/marp-cli

g++ --version
clang++ --version
echo Configure
mkdir build
cmake \
Expand Down
20 changes: 19 additions & 1 deletion .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ jobs:
cxx: "g++",
generators: "Ninja"
}
- {
name: "Ubuntu-Clang",
os: ubuntu-latest,
build_type: "Release",
cc: "clang",
cxx: "clang++",
generators: "Ninja"
}
- {
name: "Windows-MSVC",
os: windows-latest,
Expand Down Expand Up @@ -121,7 +129,7 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install conan
conan profile detect
Copy-Item ".\.github\msvc.profile" -Destination "C:\Users\runneradmin\.conan2\profiles\default"
conan profile show
ninja --version
cmake --version
conan --version
Expand All @@ -130,6 +138,16 @@ jobs:
run: |
mkdir build
mkdir ipfs-client-dev
if which ${{ matrix.config.cc }}
then
CC=`which ${{ matrix.config.cc }}`
export CC
fi
if which ${{ matrix.config.cxx }}
then
CXX=`which ${{ matrix.config.cxx }}`
export CXX
fi
cmake \
-G "${{ matrix.config.generators }}" \
-S . \
Expand Down
27 changes: 0 additions & 27 deletions chromium_edits/123.0.6312.5/chrome/browser/BUILD.gn.patch

This file was deleted.

38 changes: 0 additions & 38 deletions chromium_edits/123.0.6312.5/chrome/browser/about_flags.cc.patch

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1d0ecc3

Please sign in to comment.