git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Am a newby and I cannot compile git
@ 2019-02-10 21:56 Fabio Aiuto
  2019-02-10 22:48 ` Santiago Torres
  0 siblings, 1 reply; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-10 21:56 UTC (permalink / raw)
  To: git

Hello again my problem is that I cannot compile git.
The error message says:

	Type'z_stream' could not be resolved

I don't know why, because I installed the package zlib1g-dev and in the
header file zlib.h this structure is declared. Help me!!!
Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-10 21:56 Am a newby and I cannot compile git Fabio Aiuto
@ 2019-02-10 22:48 ` Santiago Torres
  2019-02-11 19:08   ` Fabio Aiuto
  2019-02-23  9:38   ` Fabio Aiuto
  0 siblings, 2 replies; 8+ messages in thread
From: Santiago Torres @ 2019-02-10 22:48 UTC (permalink / raw)
  To: Fabio Aiuto; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 595 bytes --]

It'd be difficult to debug without more context:

Do you mind sharing your build log and more informationa about your
setup? (e.g., what OS are you running, what packages are installed, how
did you get the git sources, etc.)

Thanks,
-Santiago.

On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> Hello again my problem is that I cannot compile git.
> The error message says:
> 
> 	Type'z_stream' could not be resolved
> 
> I don't know why, because I installed the package zlib1g-dev and in the
> header file zlib.h this structure is declared. Help me!!!
> Fabio.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-10 22:48 ` Santiago Torres
@ 2019-02-11 19:08   ` Fabio Aiuto
  2019-02-12 21:43     ` Fabio Aiuto
  2019-02-23  9:38   ` Fabio Aiuto
  1 sibling, 1 reply; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-11 19:08 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Hello Santiago,
I'm running debian Stretch on my machine, and using Eclipse. I'm new in
linux world so I don't know how could I let you know all packages I've
installed in a single screenshot.
However I got the git sources with the following command:

$ git clone git://git.kernel.org/pub/scm/git/git.git

then I've opened the project inside Eclipse by importing a makefile
project from existing code. I tried to build several time beacuse of
some compilation errors that I fixed by installing the following
packages:

$ sudo apt-get install zlib1g-dev
$ sudo apt-get install libcurl-dev
$ sudo apt-get install libcurl4-openssl-dev
$ sudo apt-get install libexpat1-dev

At last no building errors detected but when I try to run adebug
session, the IDE says tat 'Program file does not exist'. And there are
more errors spread over the project wich are not detected.When i do the
rebuild by clicking the 'hammer' icon, the message in the console
window says:
20:04:07 **** Incremental Build of configuration Default for project
git ****
make all 
    SUBDIR git-gui
    SUBDIR gitk-git
    SUBDIR templates

20:04:08 Build Finished (took 866ms)

Please ask me for more informations!!!!
Thank you
Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha scritto:
> It'd be difficult to debug without more context:
> 
> Do you mind sharing your build log and more informationa about your
> setup? (e.g., what OS are you running, what packages are installed,
> how
> did you get the git sources, etc.)
> 
> Thanks,
> -Santiago.
> 
> On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > Hello again my problem is that I cannot compile git.
> > The error message says:
> > 
> > 	Type'z_stream' could not be resolved
> > 
> > I don't know why, because I installed the package zlib1g-dev and in
> > the
> > header file zlib.h this structure is declared. Help me!!!
> > Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-11 19:08   ` Fabio Aiuto
@ 2019-02-12 21:43     ` Fabio Aiuto
  2019-02-12 21:54       ` Santiago Torres
  0 siblings, 1 reply; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-12 21:43 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Ok I typed make install from the terminal, then I attached the the
project to the executable generated in the local bin directory. So I
can happily trace in the code. Thank you, hope I will be able to fix
things in git very soon!!!
Fabio.
Il giorno lun, 11/02/2019 alle 20.08 +0100, Fabio Aiuto ha scritto:
> Hello Santiago,
> I'm running debian Stretch on my machine, and using Eclipse. I'm new
> in
> linux world so I don't know how could I let you know all packages
> I've
> installed in a single screenshot.
> However I got the git sources with the following command:
> 
> $ git clone git://git.kernel.org/pub/scm/git/git.git
> 
> then I've opened the project inside Eclipse by importing a makefile
> project from existing code. I tried to build several time beacuse of
> some compilation errors that I fixed by installing the following
> packages:
> 
> $ sudo apt-get install zlib1g-dev
> $ sudo apt-get install libcurl-dev
> $ sudo apt-get install libcurl4-openssl-dev
> $ sudo apt-get install libexpat1-dev
> 
> At last no building errors detected but when I try to run adebug
> session, the IDE says tat 'Program file does not exist'. And there
> are
> more errors spread over the project wich are not detected.When i do
> the
> rebuild by clicking the 'hammer' icon, the message in the console
> window says:
> 20:04:07 **** Incremental Build of configuration Default for project
> git ****
> make all 
>     SUBDIR git-gui
>     SUBDIR gitk-git
>     SUBDIR templates
> 
> 20:04:08 Build Finished (took 866ms)
> 
> Please ask me for more informations!!!!
> Thank you
> Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha
> scritto:
> > It'd be difficult to debug without more context:
> > 
> > Do you mind sharing your build log and more informationa about your
> > setup? (e.g., what OS are you running, what packages are installed,
> > how
> > did you get the git sources, etc.)
> > 
> > Thanks,
> > -Santiago.
> > 
> > On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > > Hello again my problem is that I cannot compile git.
> > > The error message says:
> > > 
> > > 	Type'z_stream' could not be resolved
> > > 
> > > I don't know why, because I installed the package zlib1g-dev and
> > > in
> > > the
> > > header file zlib.h this structure is declared. Help me!!!
> > > Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-12 21:43     ` Fabio Aiuto
@ 2019-02-12 21:54       ` Santiago Torres
  2019-02-15 19:13         ` Fabio Aiuto
  0 siblings, 1 reply; 8+ messages in thread
From: Santiago Torres @ 2019-02-12 21:54 UTC (permalink / raw)
  To: Fabio Aiuto; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 2807 bytes --]

Awesome,

Do consider reading the files under Documentation (as other people
suggested) to make it easier to contribute. There's CodingGuidelines
and SubmittingPatches that are super useful :)

Good luck!
-Santiago.

On Tue, Feb 12, 2019 at 10:43:13PM +0100, Fabio Aiuto wrote:
> Ok I typed make install from the terminal, then I attached the the
> project to the executable generated in the local bin directory. So I
> can happily trace in the code. Thank you, hope I will be able to fix
> things in git very soon!!!
> Fabio.
> Il giorno lun, 11/02/2019 alle 20.08 +0100, Fabio Aiuto ha scritto:
> > Hello Santiago,
> > I'm running debian Stretch on my machine, and using Eclipse. I'm new
> > in
> > linux world so I don't know how could I let you know all packages
> > I've
> > installed in a single screenshot.
> > However I got the git sources with the following command:
> > 
> > $ git clone git://git.kernel.org/pub/scm/git/git.git
> > 
> > then I've opened the project inside Eclipse by importing a makefile
> > project from existing code. I tried to build several time beacuse of
> > some compilation errors that I fixed by installing the following
> > packages:
> > 
> > $ sudo apt-get install zlib1g-dev
> > $ sudo apt-get install libcurl-dev
> > $ sudo apt-get install libcurl4-openssl-dev
> > $ sudo apt-get install libexpat1-dev
> > 
> > At last no building errors detected but when I try to run adebug
> > session, the IDE says tat 'Program file does not exist'. And there
> > are
> > more errors spread over the project wich are not detected.When i do
> > the
> > rebuild by clicking the 'hammer' icon, the message in the console
> > window says:
> > 20:04:07 **** Incremental Build of configuration Default for project
> > git ****
> > make all 
> >     SUBDIR git-gui
> >     SUBDIR gitk-git
> >     SUBDIR templates
> > 
> > 20:04:08 Build Finished (took 866ms)
> > 
> > Please ask me for more informations!!!!
> > Thank you
> > Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha
> > scritto:
> > > It'd be difficult to debug without more context:
> > > 
> > > Do you mind sharing your build log and more informationa about your
> > > setup? (e.g., what OS are you running, what packages are installed,
> > > how
> > > did you get the git sources, etc.)
> > > 
> > > Thanks,
> > > -Santiago.
> > > 
> > > On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > > > Hello again my problem is that I cannot compile git.
> > > > The error message says:
> > > > 
> > > > 	Type'z_stream' could not be resolved
> > > > 
> > > > I don't know why, because I installed the package zlib1g-dev and
> > > > in
> > > > the
> > > > header file zlib.h this structure is declared. Help me!!!
> > > > Fabio.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-12 21:54       ` Santiago Torres
@ 2019-02-15 19:13         ` Fabio Aiuto
  2019-02-23  9:45           ` Fabio Aiuto
  0 siblings, 1 reply; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-15 19:13 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Thank you so much Santiago!!! Sorry for late, lot of work these days!!!
See you soon.
Fabio.
Il giorno mar, 12/02/2019 alle 16.54 -0500, Santiago Torres ha scritto:
> Awesome,
> 
> Do consider reading the files under Documentation (as other people
> suggested) to make it easier to contribute. There's CodingGuidelines
> and SubmittingPatches that are super useful :)
> 
> Good luck!
> -Santiago.
> 
> On Tue, Feb 12, 2019 at 10:43:13PM +0100, Fabio Aiuto wrote:
> > Ok I typed make install from the terminal, then I attached the the
> > project to the executable generated in the local bin directory. So
> > I
> > can happily trace in the code. Thank you, hope I will be able to
> > fix
> > things in git very soon!!!
> > Fabio.
> > Il giorno lun, 11/02/2019 alle 20.08 +0100, Fabio Aiuto ha scritto:
> > > Hello Santiago,
> > > I'm running debian Stretch on my machine, and using Eclipse. I'm
> > > new
> > > in
> > > linux world so I don't know how could I let you know all packages
> > > I've
> > > installed in a single screenshot.
> > > However I got the git sources with the following command:
> > > 
> > > $ git clone git://git.kernel.org/pub/scm/git/git.git
> > > 
> > > then I've opened the project inside Eclipse by importing a
> > > makefile
> > > project from existing code. I tried to build several time beacuse
> > > of
> > > some compilation errors that I fixed by installing the following
> > > packages:
> > > 
> > > $ sudo apt-get install zlib1g-dev
> > > $ sudo apt-get install libcurl-dev
> > > $ sudo apt-get install libcurl4-openssl-dev
> > > $ sudo apt-get install libexpat1-dev
> > > 
> > > At last no building errors detected but when I try to run adebug
> > > session, the IDE says tat 'Program file does not exist'. And
> > > there
> > > are
> > > more errors spread over the project wich are not detected.When i
> > > do
> > > the
> > > rebuild by clicking the 'hammer' icon, the message in the console
> > > window says:
> > > 20:04:07 **** Incremental Build of configuration Default for
> > > project
> > > git ****
> > > make all 
> > >     SUBDIR git-gui
> > >     SUBDIR gitk-git
> > >     SUBDIR templates
> > > 
> > > 20:04:08 Build Finished (took 866ms)
> > > 
> > > Please ask me for more informations!!!!
> > > Thank you
> > > Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha
> > > scritto:
> > > > It'd be difficult to debug without more context:
> > > > 
> > > > Do you mind sharing your build log and more informationa about
> > > > your
> > > > setup? (e.g., what OS are you running, what packages are
> > > > installed,
> > > > how
> > > > did you get the git sources, etc.)
> > > > 
> > > > Thanks,
> > > > -Santiago.
> > > > 
> > > > On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > > > > Hello again my problem is that I cannot compile git.
> > > > > The error message says:
> > > > > 
> > > > > 	Type'z_stream' could not be resolved
> > > > > 
> > > > > I don't know why, because I installed the package zlib1g-dev
> > > > > and
> > > > > in
> > > > > the
> > > > > header file zlib.h this structure is declared. Help me!!!
> > > > > Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-10 22:48 ` Santiago Torres
  2019-02-11 19:08   ` Fabio Aiuto
@ 2019-02-23  9:38   ` Fabio Aiuto
  1 sibling, 0 replies; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-23  9:38 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Hello Santiago,
how could I get a first task? A simple one please, I'd like being
introduced to git developing as a participant in order to get used to
submitting patches, and all the tools I need.
Thank you in advance.
Fabio.

Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha scritto:
> It'd be difficult to debug without more context:
> 
> Do you mind sharing your build log and more informationa about your
> setup? (e.g., what OS are you running, what packages are installed,
> how
> did you get the git sources, etc.)
> 
> Thanks,
> -Santiago.
> 
> On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > Hello again my problem is that I cannot compile git.
> > The error message says:
> > 
> > 	Type'z_stream' could not be resolved
> > 
> > I don't know why, because I installed the package zlib1g-dev and in
> > the
> > header file zlib.h this structure is declared. Help me!!!
> > Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Am a newby and I cannot compile git
  2019-02-15 19:13         ` Fabio Aiuto
@ 2019-02-23  9:45           ` Fabio Aiuto
  0 siblings, 0 replies; 8+ messages in thread
From: Fabio Aiuto @ 2019-02-23  9:45 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Hello Santiago,
how could I get a first task? A simple one please, I'd like being
introduced to git developing as a participant in order to get used to
submitting patches, and all the tools I need.
Thank you in advance.
Fabio.

Il giorno ven, 15/02/2019 alle 20.13 +0100, Fabio Aiuto ha scritto:
> Thank you so much Santiago!!! Sorry for late, lot of work these
> days!!!
> See you soon.
> Fabio.
> Il giorno mar, 12/02/2019 alle 16.54 -0500, Santiago Torres ha
> scritto:
> > Awesome,
> > 
> > Do consider reading the files under Documentation (as other people
> > suggested) to make it easier to contribute. There's
> > CodingGuidelines
> > and SubmittingPatches that are super useful :)
> > 
> > Good luck!
> > -Santiago.
> > 
> > On Tue, Feb 12, 2019 at 10:43:13PM +0100, Fabio Aiuto wrote:
> > > Ok I typed make install from the terminal, then I attached the
> > > the
> > > project to the executable generated in the local bin directory.
> > > So
> > > I
> > > can happily trace in the code. Thank you, hope I will be able to
> > > fix
> > > things in git very soon!!!
> > > Fabio.
> > > Il giorno lun, 11/02/2019 alle 20.08 +0100, Fabio Aiuto ha
> > > scritto:
> > > > Hello Santiago,
> > > > I'm running debian Stretch on my machine, and using Eclipse.
> > > > I'm
> > > > new
> > > > in
> > > > linux world so I don't know how could I let you know all
> > > > packages
> > > > I've
> > > > installed in a single screenshot.
> > > > However I got the git sources with the following command:
> > > > 
> > > > $ git clone git://git.kernel.org/pub/scm/git/git.git
> > > > 
> > > > then I've opened the project inside Eclipse by importing a
> > > > makefile
> > > > project from existing code. I tried to build several time
> > > > beacuse
> > > > of
> > > > some compilation errors that I fixed by installing the
> > > > following
> > > > packages:
> > > > 
> > > > $ sudo apt-get install zlib1g-dev
> > > > $ sudo apt-get install libcurl-dev
> > > > $ sudo apt-get install libcurl4-openssl-dev
> > > > $ sudo apt-get install libexpat1-dev
> > > > 
> > > > At last no building errors detected but when I try to run
> > > > adebug
> > > > session, the IDE says tat 'Program file does not exist'. And
> > > > there
> > > > are
> > > > more errors spread over the project wich are not detected.When
> > > > i
> > > > do
> > > > the
> > > > rebuild by clicking the 'hammer' icon, the message in the
> > > > console
> > > > window says:
> > > > 20:04:07 **** Incremental Build of configuration Default for
> > > > project
> > > > git ****
> > > > make all 
> > > >     SUBDIR git-gui
> > > >     SUBDIR gitk-git
> > > >     SUBDIR templates
> > > > 
> > > > 20:04:08 Build Finished (took 866ms)
> > > > 
> > > > Please ask me for more informations!!!!
> > > > Thank you
> > > > Il giorno dom, 10/02/2019 alle 17.48 -0500, Santiago Torres ha
> > > > scritto:
> > > > > It'd be difficult to debug without more context:
> > > > > 
> > > > > Do you mind sharing your build log and more informationa
> > > > > about
> > > > > your
> > > > > setup? (e.g., what OS are you running, what packages are
> > > > > installed,
> > > > > how
> > > > > did you get the git sources, etc.)
> > > > > 
> > > > > Thanks,
> > > > > -Santiago.
> > > > > 
> > > > > On Sun, Feb 10, 2019 at 10:56:54PM +0100, Fabio Aiuto wrote:
> > > > > > Hello again my problem is that I cannot compile git.
> > > > > > The error message says:
> > > > > > 
> > > > > > 	Type'z_stream' could not be resolved
> > > > > > 
> > > > > > I don't know why, because I installed the package zlib1g-
> > > > > > dev
> > > > > > and
> > > > > > in
> > > > > > the
> > > > > > header file zlib.h this structure is declared. Help me!!!
> > > > > > Fabio.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-02-23  9:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-10 21:56 Am a newby and I cannot compile git Fabio Aiuto
2019-02-10 22:48 ` Santiago Torres
2019-02-11 19:08   ` Fabio Aiuto
2019-02-12 21:43     ` Fabio Aiuto
2019-02-12 21:54       ` Santiago Torres
2019-02-15 19:13         ` Fabio Aiuto
2019-02-23  9:45           ` Fabio Aiuto
2019-02-23  9:38   ` Fabio Aiuto

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).