blob: 34d7685e22a9fc79772b601198b6eb77f5d8cf72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "19.1.7";
src = fetchFromGitHub {
owner = "llvm";
repo = "llvm-project";
rev = "llvmorg-${version}";
hash = "sha256-cZAB5vZjeTsXt9QHbP5xluWNQnAHByHtHnAhVDV0E6I=";
};
patches = [];
sourceRoot = "source/libunwind";
# Building without this option breaks build traces: https://st.yandex-team.ru/DTCC-589.
cmakeFlags = [
"-DCMAKE_CXX_FLAGS=-fno-integrated-cc1"
];
}
|