| | 3 | |
| | 4 | == OS version misdetection == |
| | 5 | |
| | 6 | Linux 64 bits is misdetected most of the time, in SystemC configuration section in `soclib/utils/conf/soclib.conf`, change |
| | 7 | |
| | 8 | {{{ |
| | 9 | os = _platform(), |
| | 10 | }}} |
| | 11 | |
| | 12 | to |
| | 13 | |
| | 14 | {{{ |
| | 15 | os = 'linux64', |
| | 16 | }}} |
| | 17 | |
| | 18 | == Python version == |
| | 19 | |
| | 20 | {{{ |
| | 21 | Traceback (most recent call last): |
| | 22 | File |
| | 23 | "/home/share/dcis_scme/CI/FAUST/PROJETS/SOCLIB/soclib/utils/lib/python/soclib-cc-main.py", |
| | 24 | line 32, in ? |
| | 25 | from soclib_cc.builder.cxx import CxxCompile |
| | 26 | File |
| | 27 | "/home/share/dcis_scme/CI/FAUST/PROJETS/SOCLIB/soclib/utils/lib/python/soclib_cc/builder/cxx.py", |
| | 28 | line 29, in ? |
| | 29 | import action |
| | 30 | File |
| | 31 | "/home/share/dcis_scme/CI/FAUST/PROJETS/SOCLIB/soclib/utils/lib/python/soclib_cc/builder/action.py", |
| | 32 | line 79 |
| | 33 | @classmethod |
| | 34 | ^ |
| | 35 | SyntaxError: invalid syntax |
| | 36 | }}} |
| | 37 | |
| | 38 | Please update to python-2.4 |