程式語言 - Delphi 7 - Visual Component Library (VCL) - 開發環境



司徒目前是使用Box86 + Wine當作開發測試環境,Box86可以用來執行Intel x86指令集的程式,Box64則是可以用來執行Intel x64指令集的程式,而Wine則是可以用來跑Windows程式,Wine是Windows API層相容,但不是二進制層相容,意思就是,如果Wine是ARM armhf版本的話,Wine執行的程式就必須是ARM armhf指令集的程式,而如果Wine是Intel x86/x64版本,Wine執行的程式就必須是Intel x86/x64指令集的程式,這也是為何Windows PE程式(Intel x86/x64)可以在Linux PC(Intel x86/x64)下用Wine來執行的原因,而司徒目前是要在手機(ARM aarch64)上開發Windows x86/x64程式,所以才需要使用Box86 + Wine,司徒使用的Wine版本支援Intel x86(wine)/x64(win64)程式,安裝步驟如下:

$ cd
$ wget https://github.com/steward-fu/website/releases/download/pro1/Box86-64_Wine86-64.sh
$ chmod a+x ./Box86-64_Wine86-64.sh
$ ./Box86-64_Wine86-64.sh

$ WINEPREFIX=/home/user/.wine_amd64 box86 wine winecfg

DPI設定成144


接着安裝Delphi 7

$ cd
$ wget https://github.com/steward-fu/website/releases/download/delphi7/delphi7_iso.7z
$ 7za x delphi7_iso.7z
$ cd delphi7_iso
$ WINEPREFIX=/home/user/.wine_amd64 box86 wine "Borland\ Delphi\ 7.msi"

添加環境變數

$ WINEPREFIX=/home/user/.wine_amd64 box86 wine regedit

PATH

C:\Program Files (x86)\Borland\Delphi7\Bin



測試環境變數是否設定正確

$ WINEPREFIX=/home/user/.wine_amd64 box86 wine dcc32
    Borland Delphi Version 15.0
    Copyright (c) 1983,2002 Borland Software Corporation

    Syntax: dcc32 [options] filename [options]