How to generate .so files in systemc using cygwin?

1

I'm porting a build environment from Linux to Windows and planning to use Eclipse with Cygwin to build the code. The code requires systemc version 2.3.3. However, when building systemc in cygwin, the .so files are not generated. How can I generate the .so files in this environment, or, is it possible for me to generate them in another environment and copy them over?

I install systemc as follows from the systemc2.3.3 directory:

mkdir objdir
cd objdir
../configure --with-unix-layout --enable-pthreads --enable-debug
make
make install

Richard Boone

Posted 2019-09-04T21:57:41.043

Reputation: 11

why do you expect a so file ? – matzeri – 2019-09-08T19:58:25.797

@matzeri SystemC generates .so files when compiled in every linux environment I've ever used and they're used in the codebase I use. – Richard Boone – 2019-09-09T16:54:18.520

1Cygwin is not Linux. Shared lib are usually dll as in windows programs. – matzeri – 2019-09-10T22:13:21.163

No answers