File tree 2 files changed +8
-7
lines changed
pythondata_software_compiler_rt
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ This Useful for usage with tools like
7
7
[ LiteX] ( https://github.com/enjoy-digital/litex.git ) .
8
8
9
9
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.
11
12
12
13
Example of getting the data file directly;
13
14
``` python
Original file line number Diff line number Diff line change 4
4
src = "https://git.llvm.org/git/compiler-rt.git/"
5
5
6
6
# 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 )
9
9
try :
10
10
from packaging .version import Version as V
11
- pversion = V ("0.0.post6188 " )
11
+ pversion = V ("0.0.post6189 " )
12
12
except ImportError :
13
13
pass
14
14
36
36
"""
37
37
38
38
# 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 )
41
41
try :
42
42
from packaging .version import Version as V
43
- ptool_version = V ("0.0.post48 " )
43
+ ptool_version = V ("0.0.post49 " )
44
44
except ImportError :
45
45
pass
46
46
You can’t perform that action at this time.
0 commit comments