Sie sind auf Seite 1von 6
By default, Lazarus makes EXEs including debug information which makes them extremely big. You can strip out this debug information easily and make your EXEs smaller. Here's how to... Lazarus produces executables that are big in size, almost 14 MB or more. This increased size is of no lame excuse. The big EXE contains debugging information. Expert programmers know that debugging is crucial for testing complex code to make sure they work correctly. And sometimes debugging becomes absolutely necessary when a bug (or an error in the code that fails the program) appears in the program, You don't want to use any faulty program do you? Debugging helps to better analyze what is going on in background, when the program is running Don't worry, you can reduce the EXE file size to 1.3 MB or even below 700 KB. Here's how: a) Using Strip or Changing Project Settings (comes down to ~1.3MB) b) Using UPX (comes down to below 700KB, but with disadvantages) Strip is an utility that comes with FPC which is just an executable that can strip debugging information from an EXE. UPX further compresses the EXE to a minimum size. First of Strip-ing, There are two ways to how we can strip an EXE: Option 1: Adding to Tools Menu Option 2 requires changing Project settings. But programers are lazy. :-\ We don’t have time to change all the settings of hundreds of projects, right? We could just use a menu to do our job. It is better for testing various source codes coming from different authors who did not alter the project settings to Option 2. First take note of your FPC version. Go to Help -> About. You will see the current FPC version that you are using. Go to Tools -> Configure External Tools... Click Add. A dialog box for a new menu item under Tools menu. Enter the following info: * Title: Strip current EXE + Program Filename: C\lazarus\fpc\2.6.4\bin\i386-win32\strip.exe + (Change "2.6.4" to your FPC version that you noted earlier. If you have installed Lazarus in another directory instead of C:\lazarus , then change it accordingly.) + Parameters: --strip-all "$TargetFile” Click OK and then OK again. Now you will see a menu item in the Tools menu: Test your program by pressing F9 (or Run -> Run). Whenever you are ready to release your EXE, just click it, and within some time the file size will be reduced dramatically. (Details are at the end as a final instruction on how to apply this. Read on...) Option 2: Tweaking project settings For Lazarus version ter Since Lazarus version 1.2 the settings can be automatically set through the Build modes. So no messing around with tiny little settings, First, notice that there is no cog icon( ™ _) beside the Run button on the toolbar. That means you have no build modes set for the project. Don’t worry, we'll do that in a second, Go to Project-> Project Options-> Compiler options. Run Package Took Window Hel ie ject ® New Meject from File. = open Project. coe Open Recent Project UBB lose Project BD SaveProject BP Save Project ae Publish Projet. 1 Projectnspector WB Project Options... Shiftr Cs Fit i EditorFleto Project Shift+F11 Remove fom Projet (By Unis. criera2 & Foms.. ‘sniteFi2 & vLazPlanet:blogspot.com Click the [...] button, ert ee sein ‘spun ake de Burg S796) Now you will see a cog icon beside the Run Button. This button lets us set the build mode. Boacscngs laviceca ec imiiat Bg = | eB | 83 Standard (Ad QSlo->IaEGER) & Click the arrow beside it (not the button itself), and you will see 3 options: Default,Release and Debug. Default mode is the settings that you had set previously. Release mode is the settings that will get you smaller exe's, without the debug data. Debug mode is the mode to test your program for errors In our case, we suppose that our debugging is over, now want to get a smaller exe. So set it to Release mode. a yg aes Sor la sg Deaut wper| J) Debug pallz:| Release Run menu). 14 or eal For Lazarus version 1. We can Strip debugging information through changing project settings (or compiler parameters) in the Project Settings of an appropriate project. Open a project. Go to Project -> Project Options Compiler Options|Code Generation|Smart Linkable (-CX) -> Checked Compiler Options|Linking|Debugging| Uncheck all except Strip Symbols From Executable (-Xs) Compiler Options|Linking]Link Style|Link Smart (-XX) -> Checked Compiler Options|Linking|Debugging| Leave generating debugging info checked and check use External gdb debug symbols (This will create a separate .dbg file and store the debugging information in it, leaving the EXE small. The file is not needed to run the EXE. It is just separate file with debug info,) ye eno Verio to | vent methos cals) 80 Mecetaneous | Baits . Hespand = eee (comm eet see Flatter seacesue Options © Level in ete optimization oom neat ca or ed) 1s compte Ope Tay Mes: Ifyou can change these settings for every project you work on, you are good to go with this (Option 2). If not, choose “Option 1" above. UPX it! Since FPC 2.6.2, upx is no more shipped with FPC. Previously, it was easy for us to just locate to upx.exe. But now we will have to download and use it separately. UPX or Ultimate Packer for eXecutables can reduce the EXE size below 700KB. But it has somedisadvantages. But people use it anyway. 1. (If you use FPC 2.6.2 or later then...) download UPX from here. Extract the upx.exe to any directory. But you can put it in the FPC directory to have UPX at a good place and not just sitting around other places. (It could generally be:C:\lazarus\fpc\2.6.2\bin\i386-win32\upx.exe -- where 2.6.2 is your FPC version) 2. Go to Tools -> Configure External Tools... 3. Click Add and Enter the following info: Title: UPX current EXE Program Filename: C\lazarus\fp¢\2.6.2\bin\i386-win32\upx.exe (Note that you will have to change 2.6.2 to your FPC version) Parameters: "$TargetFile()" Click OK then OK again. Now you will see a menu in the Tools -> UPX current EXE. How to use: If you are using Option 1 for Strip-ing: Remember, first to Strip then do UPX, not the other way around. Hit F9 and Run the program. You could also press Shift+F9. It will only create or build the EXE and will not run it. After the creation of EXE, click Tools -> Strip current EXE, Wait for a while. Then click Tools -> UPX current EXE. Voila! You will get your small size marvel ready to shipped to your bearded friends! it ing Option 2 for Strip-ing: The strip-ing is done automatically when you Run (F9) or Build (Shift+F9) the project. The EXE will be created. Now, click Tools -> UPX current EXE. Sweet! Neat! Awesome! Reference: http://wiki.freepascal.org/Lazarus Faq#Why are the generated binaries so big.3F http://www pascalgamedevelopment.com/showthread,php?29113-How-to-reduce-Lazarus-0-9-30- project-exe-file-size Further Reading: http://wiki.freepascal.org/File_size_and_smartlinking http://wiki.freepascal.org/Size_Matters

Das könnte Ihnen auch gefallen