Changes between Initial Version and Version 1 of Frequently Asked Questions


Ignore:
Timestamp:
Jun 12, 2008, 2:02:55 PM (16 years ago)
Author:
Nicolas Pouillon
Comment:

FAQ

Legend:

Unmodified
Added
Removed
Modified
  • Frequently Asked Questions

    v1 v1  
     1
     2= Cross-compilation issues =
     3
     4== Wrong cross-compiler ==
     5
     6In a bunch of GCC error messages, you see
     7{{{
     8as: unrecognized option `-EL'
     9}}}
     10
     11Your mips gcc has been created wrongly, it's using your native (most probably x86) assembler. Recreate your [CrossCompiler cross-compilation toolchain].
     12
     13= Simulation issues =
     14
     15== Bus simulation and multiple drivers ==
     16
     17Using !PiBus under SystemC-2.2, you see
     18{{{
     19Error: (E115) sc_signal<T> cannot have more than one driver
     20 signal `pibus_d' (sc_signal)
     21 first driver `tty_wrapper.port_8' (sc_inout)
     22 second driver `multiram_wrapper.port_8' (sc_inout)
     23 In file: ../../../../src/sysc/communication/sc_signal.cpp:137
     24}}}
     25
     26SystemC got picky about multiple drivers. This probably needs a fix in simulation models, using SystemC-2.1 is a workaround for now.