Skip to content

Commit 335007c

Browse files
timvideos-robotTravis CI User
authored and
Travis CI User
committed
Updating pythondata-software-compiler_rt to 0.0.post6189
Updated data to v0.0-6140-g81fb4f00c based on 81fb4f0 from https://git.llvm.org/git/compiler-rt.git/. > commit 81fb4f0 > Author: Chris Bieneman <[email protected]> > Date: Fri Nov 6 23:19:29 2015 +0000 > > [CMake] Need to filter ${arch}/*.c builtins as well as ${arch}/*.S builtins. > > This was broken in r248542 when I refactored this to support builtins where ${arch} didn't match the directory prefix (i.e. armv7s). > > git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@252365 91177308-0d34-0410-b5e6-96231b3b80d8 > Updated using 0.0.post49 from https://github.com/litex-hub/litex-data-auto
1 parent 345280d commit 335007c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ This Useful for usage with tools like
77
[LiteX](https://github.com/enjoy-digital/litex.git).
88

99
The data files can be found under the Python module `pythondata_software_compiler_rt`. The
10-
`pythondata_software_compiler_rt.location` value can be used to find the files on the file system.
10+
`pythondata_software_compiler_rt.data_location` value can be used to find the files on the file
11+
system.
1112

1213
Example of getting the data file directly;
1314
```python

pythondata_software_compiler_rt/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
src = "https://git.llvm.org/git/compiler-rt.git/"
55

66
# Module version
7-
version_str = "0.0.post6188"
8-
version_tuple = (0, 0, 6188)
7+
version_str = "0.0.post6189"
8+
version_tuple = (0, 0, 6189)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("0.0.post6188")
11+
pversion = V("0.0.post6189")
1212
except ImportError:
1313
pass
1414

@@ -36,11 +36,11 @@
3636
"""
3737

3838
# Tool version info
39-
tool_version_str = "0.0.post48"
40-
tool_version_tuple = (0, 0, 48)
39+
tool_version_str = "0.0.post49"
40+
tool_version_tuple = (0, 0, 49)
4141
try:
4242
from packaging.version import Version as V
43-
ptool_version = V("0.0.post48")
43+
ptool_version = V("0.0.post49")
4444
except ImportError:
4545
pass
4646

0 commit comments

Comments
 (0)