Skip to content

Commit

Permalink
Updating pythondata-software-compiler_rt to 0.0.post6200
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 <beanz@apple.com>
> 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.post60 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot authored and Travis CI User committed Jun 10, 2020
1 parent 43f8f82 commit 7cfcaed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@

**/vhdl/**/*.vhdl linguist-language=VHDL
**/vhdl/**/*.vh linguist-language=VHDL

**/gen-src/** linguist-vendored
**/generated/** linguist-vendored
**/third_party/** linguist-vendored
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.post6198"
version_tuple = (0, 0, 6198)
version_str = "0.0.post6200"
version_tuple = (0, 0, 6200)
try:
from packaging.version import Version as V
pversion = V("0.0.post6198")
pversion = V("0.0.post6200")
except ImportError:
pass

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

# Tool version info
tool_version_str = "0.0.post58"
tool_version_tuple = (0, 0, 58)
tool_version_str = "0.0.post60"
tool_version_tuple = (0, 0, 60)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post58")
ptool_version = V("0.0.post60")
except ImportError:
pass

Expand Down

0 comments on commit 7cfcaed

Please sign in to comment.