https://bugs.winehq.org/show_bug.cgi?id=56982
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |https://www.microchip.com/e | |n-us/products/fpgas-and-pld | |s/spld-cplds/pld-design-res | |ources Keywords| |download
--- Comment #3 from Austin English austinenglish@gmail.com --- (In reply to vc from comment #2)
Thanks for the quick response. This is my first attempt using wine. I assume that I will need to install winetricks.
Is that correct?
You can use winetricks to install mfc40, yes; see https://wiki.winehq.org/Winetricks
MBP ~ % wine /Users/vincentcifello/.wine/drive_c/Wincupl/Shared/cupl.exe -mljswu /Users/vincentcifello/.wine/drive_c/Wincupl/Shared/Atmel.dl /Users/vincentcifello/.wine/drive_c/temp/cupltest.pld
Additionally, you are passing Unix paths to a windows application, which it probably doesn't know how to interact with. Try using windows paths instead. Something like:
$ cd /Users/vincentcifello/.wine/drive_c/Wincupl/Shared/ $ wine cupl.exe -mljswu "$(winepath -w /Users/vincentcifello/.wine/drive_c/Wincupl/Shared/Atmel.dl)" "$(winepath -w /Users/vincentcifello/.wine/drive_c/temp/cupltest.pld)"