PowerBuilder Compiler (PBC) is integrated into PBAutoBuild and the executable file (pbc250.exe) is no longer provided in PowerBuilder 2025.
You need to replace "pbc250" with "pbautobuild250 /pbc" and keep the other parameters unchanged.
-
To compile a project using PBC in PowerBuilder 2025:
Replace the following command:
pbc250 /c pbwfile or pbtfile [/compilemode]
With this command:
pbautobuild250 /pbc /c pbwfile or pbtfile [/compilemode] //include /pbc to switch to the PBC approach, the other parameters remain unchanged
-
To deploy a project using PBC in PowerBuilder 2025:
Replace the following command:
pbc250 /d pbwfile or pbtfile [/compilemode] [/options]
With this command:
pbautobuild250 /pbc /d pbwfile or pbtfile [/compilemode] [/options] //include /pbc to switch to the PBC approach, the other parameters remain unchanged