Skip to content

Commit

Permalink
Updating pythondata-software-compiler_rt to 0.0.post6189
Browse files Browse the repository at this point in the history
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
  • Loading branch information
timvideos-robot authored and Travis CI User committed Apr 9, 2020
1 parent 345280d commit 335007c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ This Useful for usage with tools like
[LiteX](https://github.com/enjoy-digital/litex.git).

The data files can be found under the Python module `pythondata_software_compiler_rt`. The
`pythondata_software_compiler_rt.location` value can be used to find the files on the file system.
`pythondata_software_compiler_rt.data_location` value can be used to find the files on the file
system.

Example of getting the data file directly;
```python
Expand Down
12 changes: 6 additions & 6 deletions pythondata_software_compiler_rt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://git.llvm.org/git/compiler-rt.git/"

# Module version
version_str = "0.0.post6188"
version_tuple = (0, 0, 6188)
version_str = "0.0.post6189"
version_tuple = (0, 0, 6189)
try:
from packaging.version import Version as V
pversion = V("0.0.post6188")
pversion = V("0.0.post6189")
except ImportError:
pass

Expand Down Expand Up @@ -36,11 +36,11 @@
"""

# Tool version info
tool_version_str = "0.0.post48"
tool_version_tuple = (0, 0, 48)
tool_version_str = "0.0.post49"
tool_version_tuple = (0, 0, 49)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post48")
ptool_version = V("0.0.post49")
except ImportError:
pass

Expand Down

0 comments on commit 335007c

Please sign in to comment.