Skip to content

Commit 14f1a25

Browse files
author
Jason Mobarak
committed
Add licenses for LLVM and Obfuscator-LLVM
1 parent 100c947 commit 14f1a25

File tree

2 files changed

+122
-0
lines changed

2 files changed

+122
-0
lines changed

LICENSE

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
==============================================================================
2+
License for swift-nav/llvm-obfuscator-arm
3+
==============================================================================
4+
15
Copyright (C) 2017 Swift Navigation Inc.
26

37
Permission is hereby granted, free of charge, to any person obtaining
@@ -18,3 +22,118 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1822
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1923
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2024
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25+
26+
==============================================================================
27+
Obfuscator-LLVM Release License
28+
==============================================================================
29+
University of Illinois/NCSA
30+
Open Source License
31+
32+
Copyright (c) 2014 Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud (HEIG-VD). All rights reserved.
33+
34+
Developed by:
35+
36+
Obfuscator-LLVM Team
37+
38+
Haute-Ecole d'Ingénierie et de Gestion du Canton de Vaud (HEIG-VD), a part
39+
of the University of Applied Sciences and Arts Western Switzerland (HES-SO)
40+
41+
http://o-llvm.org
42+
43+
Permission is hereby granted, free of charge, to any person obtaining a copy of
44+
this software and associated documentation files (the "Software"), to deal with
45+
the Software without restriction, including without limitation the rights to
46+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
47+
of the Software, and to permit persons to whom the Software is furnished to do
48+
so, subject to the following conditions:
49+
50+
* Redistributions of source code must retain the above copyright notice,
51+
this list of conditions and the following disclaimers.
52+
53+
* Redistributions in binary form must reproduce the above copyright notice,
54+
this list of conditions and the following disclaimers in the
55+
documentation and/or other materials provided with the distribution.
56+
57+
* Neither the names of the Obfuscator-LLVM Team, the Haute Ecole d'Ingénierie
58+
et de Gestion du Canton de Vaud (HEIG-VD), the University of Applied Sciences
59+
and Arts Western Switzerland (HES-SO) nor the names of its contributors
60+
may be used to endorse or promote products derived from this Software
61+
without specific prior written permission.
62+
63+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
65+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
66+
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
68+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
69+
SOFTWARE.
70+
71+
==============================================================================
72+
LLVM Release License
73+
==============================================================================
74+
University of Illinois/NCSA
75+
Open Source License
76+
77+
Copyright (c) 2003-2017 University of Illinois at Urbana-Champaign.
78+
All rights reserved.
79+
80+
Developed by:
81+
82+
LLVM Team
83+
84+
University of Illinois at Urbana-Champaign
85+
86+
http://llvm.org
87+
88+
Permission is hereby granted, free of charge, to any person obtaining a copy of
89+
this software and associated documentation files (the "Software"), to deal with
90+
the Software without restriction, including without limitation the rights to
91+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
92+
of the Software, and to permit persons to whom the Software is furnished to do
93+
so, subject to the following conditions:
94+
95+
* Redistributions of source code must retain the above copyright notice,
96+
this list of conditions and the following disclaimers.
97+
98+
* Redistributions in binary form must reproduce the above copyright notice,
99+
this list of conditions and the following disclaimers in the
100+
documentation and/or other materials provided with the distribution.
101+
102+
* Neither the names of the LLVM Team, University of Illinois at
103+
Urbana-Champaign, nor the names of its contributors may be used to
104+
endorse or promote products derived from this Software without specific
105+
prior written permission.
106+
107+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
108+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
109+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
110+
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
111+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
112+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
113+
SOFTWARE.
114+
115+
==============================================================================
116+
Copyrights and Licenses for Third Party Software Distributed with LLVM:
117+
==============================================================================
118+
The LLVM software contains code written by third parties. Such software will
119+
have its own individual LICENSE.TXT file in the directory in which it appears.
120+
This file will describe the copyrights, license, and restrictions which apply
121+
to that code.
122+
123+
The disclaimer of warranty in the University of Illinois Open Source License
124+
applies to all code in the LLVM Distribution, and nothing in any of the
125+
other licenses gives permission to use the names of the LLVM Team or the
126+
University of Illinois to endorse or promote products derived from this
127+
Software.
128+
129+
The following pieces of software have additional or alternate copyrights,
130+
licenses, and/or restrictions:
131+
132+
Program Directory
133+
------- ---------
134+
Google Test llvm/utils/unittest/googletest
135+
OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
136+
pyyaml tests llvm/test/YAMLParser/{*.data, LICENSE.TXT}
137+
ARM contributions llvm/lib/Target/ARM/LICENSE.TXT
138+
md5 contributions llvm/lib/Support/MD5.cpp llvm/include/llvm/Support/MD5.h
139+
Obfuscator llvm/lib/Transforms/Obfuscation/LICENSE-OBFUSCATOR.TXT

stage_sysroot.bash

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ stage_sysroot() {
3535
mkdir -p $WRAPPERS_BIN
3636
rsync -asv '--exclude=.*.sw?' /this_dir/bin/ $WRAPPERS_BIN/
3737

38+
LICENSE=/opt/llvm-obfuscator/
39+
cp -v /this_dir/LICENSE $LICENSE
40+
3841
BINTOOLS=(
3942
/usr/bin/arm-linux-gnueabihf-ar
4043
/usr/bin/arm-linux-gnueabihf-as

0 commit comments

Comments
 (0)