Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-20 Thread Kjow
2010/1/19 Mattias Gaertner nc-gaert...@netcologne.de: make bigide compiles an IDE as found in the windows installer. To compile an IDE with your current set of installed packages, use lazbuild --build-ide= After an svn update, it is better to do: make clean all lazbuild --build-all

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Kjow
2010/1/19 Paul Ishenin webpi...@mail.ru: Good to know - we have similar environment. Lazarus trunk has a lazarus.res file: http://svn.freepascal.org/svn/lazarus/trunk/ide/lazarus.res Do you have one? Ide using here: http://svn.freepascal.org/svn/lazarus/trunk/ide/lazarus.pp [part of

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Paul Ishenin
19.01.2010 15:28, Kjow wrote: Oh! Now I understand, it is a my mistake... I edited lazarus.pp from {$R lazarus.res} to { $R lazarus.res} because I use glscene that makes a lot of graphical glitches with windows manifest, so I need to disable this functions in lazarus IDE (otherwise, there is no

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Kjow
2010/1/19 Paul Ishenin i...@kmiac.ru: You can open lazarus.lpi in lazarus and edit the project options. Thank you very much, now it is almost perfect :) I noticed that if I want associate lazarus to open .lpi file, the icon in file exploer isn't beauty (the real icon is at the center of a white

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Hans-Peter Diettrich
Kjow schrieb: As I said on first message, I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc and finally recompile lazarus, but every time I run Lazarus (after relative make clean all) I haven't any extra component. I need to click in build voice

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-19 Thread Mattias Gaertner
On Tue, 19 Jan 2010 13:40:22 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: Kjow schrieb: As I said on first message, I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc and finally recompile lazarus, but every time I run Lazarus

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Mattias Gaertner
On Mon, 18 Jan 2010 00:17:34 +0100 Kjow antispamm...@gmail.com wrote: Hi all, I need to compile lazarus in terminal (or command prompt) including all components already installed. I mean that I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Paul Ishenin
18.01.2010 17:08, Mattias Gaertner wrote: I noticed also that lazarus.exe hasn't the icon, how to associate it to the exe? It is already compiled in. Maybe Paul can answer this? Windows uses built-in icon automatically. On linux you need to assign project ico file to desktop shortcut

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Mattias Gaertner nc-gaert...@netcologne.de: See http://wiki.lazarus.freepascal.org/Installing_Lazarus#Compiling_and_running Oh, OK. So to upgrade svn revisions I need to do make instead make clean all. I noticed also that lazarus.exe hasn't the icon, how to associate it to the

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Paul Ishenin i...@kmiac.ru: Windows uses built-in icon automatically. On linux you need to assign project ico file to desktop shortcut manually. I don't know if this can be automated since even kde and gnome requires different actions for that. On OSX we are thinking about the

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Mattias Gaertner
On Mon, 18 Jan 2010 12:39:06 +0100 Kjow antispamm...@gmail.com wrote: 2010/1/18 Mattias Gaertner nc-gaert...@netcologne.de: I guess you mean you have to use make clean all Umm... I do make clean all, then it compile right, but without installed extra packages. Then if I try to do

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Paul Ishenin
Mattias Gaertner wrote: startlazarus.exe and lazbuild.exe have both the icon, but lazarus.exe hasn't. Paul? No idea. Lazarus.exe has the same icon as startlazarus and lazbuild here. Whops, I mean directly in make string... but it isn't a problem to add a row in the script ;)

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Luca Olivetti
En/na Kjow ha escrit: 2010/1/18 Mattias Gaertner nc-gaert...@netcologne.de: I guess you mean you have to use make clean all Umm... I do make clean all, then it compile right, but without installed extra packages. Then if I try to do lazbuild --build-all or lazbuild -B, I get:

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Paul Ishenin webpi...@mail.ru: No idea. Lazarus.exe has the same icon as startlazarus and lazbuild here. Can I force to link the icon? (e.g windres in my own script, but which syntax?) Thanks, Kjow -- ___ Lazarus mailing list

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Luca Olivetti l...@wetron.es: You need to specify the --build-ide= option as well Do you mean lazbuild --build-all --build-ide=? Thanks, Kjow -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Paul Ishenin
Kjow wrote: No idea. Lazarus.exe has the same icon as startlazarus and lazbuild here. Can I force to link the icon? (e.g windres in my own script, but which syntax?) Can you tell me what lazarus version do you have? If 0.9.28 then look at lazarus.rc which must contain a manifest and

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Kjow
2010/1/18 Paul Ishenin webpi...@mail.ru: Can you tell me what lazarus version do you have? If 0.9.28 then look at lazarus.rc which must contain a manifest and an icon. If 0.9.29 then lazarus.res must be in the ide folder which contains an icon. As I said on first message, I made a simple

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Vincent Snijders
Mattias Gaertner schreef: No, the syntax is: make OPT='-Xs' You can do OPT=-g- -Xs, but you don't have debug info in compiled units either. Vincent -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Build/Rebuild lazarus with components

2010-01-18 Thread Paul Ishenin
Kjow wrote: As I said on first message, I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc and finally recompile lazarus, but every time I run Lazarus (after relative make clean all) I haven't any extra component. I need to click in build voice in

[Lazarus] Build/Rebuild lazarus with components

2010-01-17 Thread Kjow
Hi all, I need to compile lazarus in terminal (or command prompt) including all components already installed. I mean that I made a simple batch script on windows startup that download fpc svn, lazarus svn, recompile fpc and finally recompile lazarus, but every time I run Lazarus (after relative