Changes between Version 2 and Version 3 of Frequently Asked Questions


Ignore:
Timestamp:
Nov 12, 2008, 1:18:56 PM (15 years ago)
Author:
Nicolas Pouillon
Comment:

Update de la FAQ par Ivan

Legend:

Unmodified
Added
Removed
Modified
  • Frequently Asked Questions

    v2 v3  
    11
    22= Installation issues =
     3
     4== OS version misdetection ==
     5
     6Linux 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
     12to
     13
     14{{{
     15   os = 'linux64',
     16}}}
     17
     18== Python version ==
     19
     20{{{
     21Traceback (most recent call last):
     22  File
     23"/home/share/dcis_scme/CI/FAUST/PROJETS/SOCLIB/soclib/utils/lib/python/soclib-cc-main.py",
     24line 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",
     28line 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",
     32line 79
     33    @classmethod
     34    ^
     35SyntaxError: invalid syntax
     36}}}
     37
     38Please update to python-2.4
    339
    440== Utilities compilation going wrong ==
     
    2965}}}
    3066
     67== BFD using symbols from libiberty ==
     68
     69Lots of errors like
     70
     71{{{
     72/usr/lib/gcc/x86_64-redhat-linux/3.4.6/../../../../lib64/libbfd.a(archures.o)(.text+0x3e0): In function `bfd_default_scan':
     73: undefined reference to `_sch_istable'
     74}}}
     75
     76can be solved with
     77
     78{{{
     79config.default.toolchain.libs.append('-liberty')
     80}}}
     81
     82at the end of `soclib/utils/conf/soclib.conf`
     83
    3184= Cross-compilation issues =
    3285