bfieldi Posted September 25, 2006 Report Share Posted September 25, 2006 We are considering porting a very large (~50,000 nodes) LabView application from Windows to Linux. My web searches are turning up bits and pieces of information regarding the differences between the 2, but I'd like to hear from someone who's gone through this exercise. Any words of wisdom? :2cents: Quote Link to comment
Rolf Kalbermatter Posted September 27, 2006 Report Share Posted September 27, 2006 We are considering porting a very large (~50,000 nodes) LabView application from Windows to Linux. My web searches are turning up bits and pieces of information regarding the differences between the 2, but I'd like to hear from someone who's gone through this exercise. Any words of wisdom? :2cents: This looks pretty big and it would seem strange if you were not using some .Net, ActiveX, DDE , DAQ, GPIB, and DLLs/CINs in there somehow. Any of these and a few more can be a more or less big stumbling block depending on your experience in those areas. Rolf Kalbermatter Quote Link to comment
Mike Ashe Posted September 27, 2006 Report Share Posted September 27, 2006 You also should expect some differences in fonts. That may sound minor, but when font changes mess up your nice GUIs ... You can import truetype fonts into most of the major linux distributions. If you have much in the way of GUIs, do yourself a favor and bring over the same fonts from Windows and use have them set up on you linux box. As for DLLs, if you have the source code you can make equivalent functions using gcc, etc, then change the call library nodes in labview to use mylibrary.* instead of mylibrary.doo or my library.so and labview will auto switch which library it links to based on the OS environment. You still have a lot of work, but this helps a little. Quote Link to comment
brent99 Posted September 27, 2006 Report Share Posted September 27, 2006 We are considering porting a very large (~50,000 nodes) LabView application from Windows to Linux. My web searches are turning up bits and pieces of information regarding the differences between the 2, but I'd like to hear from someone who's gone through this exercise. Any words of wisdom? :2cents: I cheated -- used Vmware. Quote Link to comment
Bryan Posted September 29, 2006 Report Share Posted September 29, 2006 EOL characters. Windows uses \r\n for an EOF, Linux uses \n. Best way around it is to make sure you use the EOF constant in the strings palette instead of putting your own in. Linux for LV and Win automatically ensure that these constants are right for the OS used. May not be an issue for you, but in my Win >> Linux experiences, this is the only thing that bit me so far. Quote Link to comment
Mike Ashe Posted September 29, 2006 Report Share Posted September 29, 2006 Obviously paths and permissions become much more of an issue with linux. We tend not to think of such things much in the Windows world, but you'll probably have to add some management for those items in your linux version. Quote Link to comment
crelf Posted September 29, 2006 Report Share Posted September 29, 2006 We tend not to think of such things much in the Windows world... We don't? I think MIcrosoft is going to be making this even more important in upcoming release(s) of their OS... Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.