Does WineHQ support OpenMP ?
Does WineHQ support OpenMP ?
I searched through the forum and website but didn't found any information about OpenMP.
Thanx in advance.
Thanx in advance.
Does WineHQ support OpenMP ?
On Fri, Mar 27, 2009 at 3:40 AM, olinews <[email protected]> wrote:
--
-Austin
Try it and find out.I searched through the forum and website but didn't found any information about OpenMP.
--
-Austin
Does WineHQ support OpenMP ?
I actually searched through the website and didn't found anything about OpenMP nor vcomp.dll wich is the regular dll to support OpenMP on windows native system.
Finally i just wrote a little "hello world" program on windows with VS2008:
To make it work on my Ubuntu i had to use winetricks (http://wiki.winehq.org/winetricks):
Then i had to copy the vcomp90.dll along with my sample executable. This dll is the regular OpenMP support for VS2008. It seems not to be installed with VS2008 redistribuable package.
And it worked
So, as far as i can see, OpenMP compliant software works fine with WineHQ on Ubuntu.
Need more realistic test now...
Hope this can help someone.
Finally i just wrote a little "hello world" program on windows with VS2008:
Code: Select all
int wmain(int argc, WCHAR* argv[])
{
#pragma omp parallel
{
printf("Hello World\n");
}
return 0;
}
Code: Select all
wget http://www.kegel.com/wine/winetricks
sh winetricks corefonts vcrun2008
And it worked

So, as far as i can see, OpenMP compliant software works fine with WineHQ on Ubuntu.
Need more realistic test now...

Hope this can help someone.
Does WineHQ support OpenMP ?
On Fri, Mar 27, 2009 at 5:22 AM, olinews <[email protected]> wrote:
--
-Austin
Is there a microsoft download that does have it?wget http://www.kegel.com/wine/winetricks
sh winetricks corefonts vcrun2008
Then i had to copy the vcomp90.dll along with my sample executable. This dll is the regular OpenMP support for VS2008. It seems not to be installed with VS2008 redistribuable package.
--
-Austin
Post subject: Does WineHQ support OpenMP ?
vcomp90.dll was installed along with my VS2008 PRO.
I am not sure but maybe it can be obtained from a fresh install of VS2008 Express edition which is free.
Now its up to you to try it and find out
I am not sure but maybe it can be obtained from a fresh install of VS2008 Express edition which is free.
Now its up to you to try it and find out

Does WineHQ support OpenMP ?
On Fri, Mar 27, 2009 at 11:18 AM, olinews <[email protected]> wrote:
bundles it, I'll see if I can add it to winetricks.
--
-Austin
That's a bit heavy of an app...If you can find a small app thatvcomp90.dll  was installed along with my VS2008 PRO.
I am not sure but maybe it can be obtained from a fresh install of VS2008 Express edition which is free.
bundles it, I'll see if I can add it to winetricks.
--
-Austin
After reading this it seems that vcomp90.dll is available from Microsoft Visual C++ 2008 Redistributable Package
Does WineHQ support OpenMP ?
On Fri, Mar 27, 2009 at 11:41 AM, olinews <[email protected]> wrote:
--
-Austin
That's what winetricks vcrun2008 installs...After reading this (http://kenny-tm.xanga.com/651048063/par ... 8-express/) it seems that vcomp90.dll is available from Microsoft Visual C++ 2008 Redistributable Package (http://www.microsoft.com/downloads/deta ... laylang=en)
--
-Austin
If i dont copy vcomp90.dll along with my program i get this error:
If i copy vcomp90.dll along with my program it works fine.
I cannot figure out why vcomp90.dll is not detected with only the Microsoft Visual C++ 2008 Redistributable Package installed via winetricks.
Code: Select all
xxxx@xxxx-desktop-ubuntu:~$ wine /home/xxxx/.wine/drive_c/"Program Files"/DVBSub/DVBSubOpenMp.exe
err:module:import_dll Library VCOMP90.DLL (which is needed by L"C:\\Program Files\\DVBSub\\DVBSubOpenMp.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\DVBSub\\DVBSubOpenMp.exe" failed, status c0000135
I cannot figure out why vcomp90.dll is not detected with only the Microsoft Visual C++ 2008 Redistributable Package installed via winetricks.
