Skip to content

Commit eb1f4d6

Browse files
committed
Add 64-bit pcre.dll for Windows opbsim builds
1 parent 0d4ab9b commit eb1f4d6

File tree

3 files changed

+99
-1
lines changed

3 files changed

+99
-1
lines changed

MANIFEST.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
recursive-include templates *
22
recursive-include example *.vhdl *.psm4 *.txt *.do
3-
prune example/build
3+
prune example/vsim/build
4+
45
include opbasm_lib/*.m4
56
recursive-include opbasm_lib/lang *
67
recursive-include opbasm_lib/m4 *
78
prune opbasm_lib/lang/tools
9+
810
include test/asm/*.psm4
911
include test/asm/*.m4
1012
include sim/*.nim
13+
recursive-include sim/win64 *
14+
1115
recursive-include doc *
1216
prune doc/_build
17+
1318
include README.rst
1419
include ChangeLog.txt
1520
include CONTRIBUTING

sim/win64/LICENCE

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
PCRE LICENCE
2+
------------
3+
4+
PCRE is a library of functions to support regular expressions whose syntax
5+
and semantics are as close as possible to those of the Perl 5 language.
6+
7+
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
8+
specified below. The documentation for PCRE, supplied in the "doc"
9+
directory, is distributed under the same terms as the software itself. The data
10+
in the testdata directory is not copyrighted and is in the public domain.
11+
12+
The basic library functions are written in C and are freestanding. Also
13+
included in the distribution is a set of C++ wrapper functions, and a
14+
just-in-time compiler that can be used to optimize pattern matching. These
15+
are both optional features that can be omitted when the library is built.
16+
17+
18+
THE BASIC LIBRARY FUNCTIONS
19+
---------------------------
20+
21+
Written by: Philip Hazel
22+
Email local part: ph10
23+
Email domain: cam.ac.uk
24+
25+
University of Cambridge Computing Service,
26+
Cambridge, England.
27+
28+
Copyright (c) 1997-2015 University of Cambridge
29+
All rights reserved.
30+
31+
32+
PCRE JUST-IN-TIME COMPILATION SUPPORT
33+
-------------------------------------
34+
35+
Written by: Zoltan Herczeg
36+
Email local part: hzmester
37+
Emain domain: freemail.hu
38+
39+
Copyright(c) 2010-2015 Zoltan Herczeg
40+
All rights reserved.
41+
42+
43+
STACK-LESS JUST-IN-TIME COMPILER
44+
--------------------------------
45+
46+
Written by: Zoltan Herczeg
47+
Email local part: hzmester
48+
Emain domain: freemail.hu
49+
50+
Copyright(c) 2009-2015 Zoltan Herczeg
51+
All rights reserved.
52+
53+
54+
THE C++ WRAPPER FUNCTIONS
55+
-------------------------
56+
57+
Contributed by: Google Inc.
58+
59+
Copyright (c) 2007-2012, Google Inc.
60+
All rights reserved.
61+
62+
63+
THE "BSD" LICENCE
64+
-----------------
65+
66+
Redistribution and use in source and binary forms, with or without
67+
modification, are permitted provided that the following conditions are met:
68+
69+
* Redistributions of source code must retain the above copyright notice,
70+
this list of conditions and the following disclaimer.
71+
72+
* Redistributions in binary form must reproduce the above copyright
73+
notice, this list of conditions and the following disclaimer in the
74+
documentation and/or other materials provided with the distribution.
75+
76+
* Neither the name of the University of Cambridge nor the name of Google
77+
Inc. nor the names of their contributors may be used to endorse or
78+
promote products derived from this software without specific prior
79+
written permission.
80+
81+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
82+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
83+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
84+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
85+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
86+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
87+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
88+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
89+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
90+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
91+
POSSIBILITY OF SUCH DAMAGE.
92+
93+
End

sim/win64/pcre.dll

514 KB
Binary file not shown.

0 commit comments

Comments
 (0)