Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing SystemC for VS2013

I am using Windows 10 64-bit machine with Visual Studio Professional 2013 and I want to install SystemC. I downloaded SystemC 2.3.1 and I tried following the "Installation notes" provided but they're slightly outdated.

For one, it says "for VS 2005 and higher on Windows 7 machines" but I am using Windows 10, nevertheless I still tried to follow it. Second, the inclusion of src and lib files cannot be followed as stated there since this method was changed in VS2013. There seems to be no global setting anymore via Tools->Options->Projects->VCC++ directions tab.

Now, I was able to successfully buiold the SystemC.sln solution. However, when I tried to build an example project I got the following error:

LINK : fatal error LNK1104: cannot open file 'C:\Users\Andrew\Downloads\systemc-2.3.1a\systemc-2.3.1a\msvc80\SystemC\Debug.obj'

Even though I think I've correctly specified the src and lib directories in the project properties.

Can anyone explain how to build SystemC with VS2013 on Windows 10 x64?

like image 705
Javia1492 Avatar asked Feb 01 '17 22:02

Javia1492


People also ask

Where is Systemc installed?

(a) The SystemC tool set is installed only on the Linux machines in the ECE LRC. All the Linux machines in LRC available for access are listed at: http://www.ece.utexas.edu/it/remote-linux You can work on any of the regular 64-bit Linux server.

How do I run Systemc on Windows?

Go to: C/C++ Build > Settings > Tool Settings > Cygwin C++ Linker > Libraries and Configure “Libraries -l” and “Library search path -L” as described next. 22. Under "Library Paths" add the path to the compile systemc libraries, in the form of "cygwin64/sysclibs/lib-cygwin64" and as shown in the Figure on the next page.


1 Answers

Update: if you use CMake with Visual Studio, check Setting up a SystemC project with CMake: undefined reference to `sc_core

Currently I have no MSVC2013 installed, so here are steps for MSVC2017 that worked for me.

  1. Download latest SystemC from http://accellera.org/downloads/standards/systemc
  2. Open systemc-2.3.1a\msvc80\SystemC\SystemC.sln in Visual Studio
  3. Visual Studio will offer to update solution, click ok. You can ignore report with warnings.
  4. In VS menu bar set configuration to “Debug“ “Win32”. (In my case was already selected by default)
  5. Build solution (F7)

    In console, you may find messages like:

    Unknown compiler version - please run the configure tests and report the results

    You can ignore them. Solution should build without errors:

    ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

  6. As a result you will have SystemC.lib in systemc-2.3.1a\msvc80\SystemC\Debug

Now you can create some test SystemC project.

  1. File->New -> Project -> Win32 Console application
  2. Right click on project in solution explorer -> Properties
  3. In Configuration Properties -> C/C++ -> General-> Additional include directories

    Add path to: \systemc-2.3.1a\src

  4. In Configuration Properties -> C/C++ -> Code generation -> Runtime Library

    Select: Multi-threaded Debug (/MTd)

  5. In Configuration Properties -> C/C++ -> Language -> Enable Run-Time Type Information

    Select: Yes (/GR)

  6. In Configuration Properties -> C/C++ -> Command Line -> Additional options

    Type: /vmg

  7. In Configuration Properties -> Linker -> General -> Additional Library Directories

    Add path to: systemc-2.3.1a\msvc80\SystemC\Debug

  8. In Configuration Properties -> Linker -> Input -> Additional dependencies

    Add: SystemC.lib

Now it's time to type some code. For example this "Hello world":

#include "stdafx.h"

struct test_module : sc_module {
    SC_HAS_PROCESS(test_module);

    test_module(::sc_core::sc_module_name) {
        SC_THREAD(test_thread);
    }

    sc_signal<std::string>  message{ "message" };

    void test_thread() {
        message.write("Hello world!");
        wait(1, SC_NS);
        cout << message.read() << endl;
        sc_stop();
    }
};

int sc_main(int argc, char** argv)
{
    test_module tmod{ "tmod" };
    sc_start();
    return 0;
}

In stdafx.h add:

 #include <systemc.h>
  1. Build project, it will fail with:

    \systemc-2.3.1a\src\systemc.h(120): error C2039: 'gets': is not a member of 'std'

gets was removed from std namespace in latest MSVCs, but it is not really required. So just open systemc.h and comment out Line 120:

//    using std::gets;
  1. In case you got error about sprintf

Add _CRT_SECURE_NO_WARNINGS to list of preprocessor definitions

  1. Build again. Run without debugging (Ctrl+F5). You should see the following introduction test on your console:
    SystemC 2.3.1-Accellera --- Feb  1 2017 14:43:06
    Copyright (c) 1996-2014 by all Contributors,
    ALL RIGHTS RESERVED

    Hello world!

    Info: /OSCI/SystemC: Simulation stopped by user.
    Press any key to continue . . .

Hope that helps

like image 95
random Avatar answered Nov 15 '22 09:11

random