Revision history for compiling


Revision [32135]

Last edited on 2018-09-26 14:40:12 by PageStep007 [link to salckbuilds added]
Additions:
~[[https://slackbuilds.org/]] Build scripts repository for Slacko puppies.
Deletions:
~[[https://slackbuilds.org/]]


Revision [32134]

Edited on 2018-09-26 14:27:55 by PageStep007 [link to salckbuilds added]
Additions:
~[[https://slackbuilds.org/]]


Revision [32132]

Edited on 2018-09-22 16:04:42 by PageStep007 [link to salckbuilds added]
Additions:
The 'configured' and 'compiled/built/made' program, can be installed, usually with a 'make install' (without the quotes and a space between the two words) command in the terminal.
Due to Puppy being a very lean operating system, many libraries are not included in the Puppy. Depending on how you look at this, it is good, or not good. It is good, because the Puppy comes with everything it needs to run, and it is mind bogglingly small due to this. There is no 'junk' included. (Windows on the other hand includes just about everything the world might need, and it comes very bloated with often unused junk.) However, the down side or trade off is, there are few libraries that other larger linux systems include in their systems, and therefore many package installations come up short, and then a Sherlock Holmes process ensues. Any missing Libraries need to be tracked down on the internet and installed so that the source package configuration and compilation processes can use them.
Deletions:
The 'configured' and 'compiled/built/made' program, can be installed, usually with a 'make install' (without the quotes and a space between the two words) command in the terminal
Due to Puppy being a very lean operating system, many libraries are not included in the Puppy. Depending on how you look at this, it is good, or not good. It is good, because the Puppy comes with everything it needs to run, and it is mind bogglingly small due to this. There is no 'junk' included. (Windows on the other hand includes just about everything the world might need, and it comes very bloated with often unused junk.) However, the down side or trade off is, there are few libraries that other larger linux systems include in their systems, and therefore many package installations come up short, and then a Sherlock Holmes process ensues. Any missing Libraries need to be tracked down on the internet and installed so that the source package configuration and compilation processes can use them.


Revision [32131]

Edited on 2018-09-22 16:02:29 by PageStep007 [link to salckbuilds added]
Additions:
The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same. If there is an 'autogen.sh' file, it also does basically the same as 'configure', (the .sh means it is a linux executable script . sh basically stands for [[shell]] so it is a script the [[terminal]] can run with its built in commands.)
Deletions:
The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same. If there is an 'autogen.sh' file, it also does basically the same as 'configure, (the .sh means it is a linux executable script . sh basically stands for [[shell] so it is a script the [[terminal]] can run with its built in commands.)


Revision [32130]

Edited on 2018-09-22 15:57:17 by PageStep007 [link to salckbuilds added]
Additions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. In Linux they have an .so extension and in windows they have .dll extension. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you, in the installation process, as well as the files needed to run the program. This jumble will not run in this state. It needs to be 'compiled'.
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. has the 'make' program in it. Different code writers occasionally have different procedures in compiling and so source packages may vary in their organization and execution. Read and help files are usually included in the package to give some sort of idea on these variations. Usually you need to do the compiling process through a [[terminal]] (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.
Deletions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. In Linux they have a .so extension and in windows they have .dll extension. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process as well as the files needed to run the program. This jumble will not run in this state. It needs to be 'compiled'.
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. has the 'make' program in it. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use at different points. Usually you need to do the compiling process through a [[terminal]] (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.


Revision [32129]

Edited on 2018-09-22 15:49:50 by PageStep007 [link to salckbuilds added]
Additions:
The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same. If there is an 'autogen.sh' file, it also does basically the same as 'configure, (the .sh means it is a linux executable script . sh basically stands for [[shell] so it is a script the [[terminal]] can run with its built in commands.)
2.Compile/build.
===Problems===
Problems can arise if the configuration process does not find all of the required files on your system that it expects to find, and they are not included in the source package. The program depends on these files. Therefore they are called [[Dependencies]] . If the configuration process does not find them, the compilation process most probably won't work.
Due to Puppy being a very lean operating system, many libraries are not included in the Puppy. Depending on how you look at this, it is good, or not good. It is good, because the Puppy comes with everything it needs to run, and it is mind bogglingly small due to this. There is no 'junk' included. (Windows on the other hand includes just about everything the world might need, and it comes very bloated with often unused junk.) However, the down side or trade off is, there are few libraries that other larger linux systems include in their systems, and therefore many package installations come up short, and then a Sherlock Holmes process ensues. Any missing Libraries need to be tracked down on the internet and installed so that the source package configuration and compilation processes can use them.
Deletions:
The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same. If there is an 'autogen.sh' file, it also does basically the same as 'configure, (the .sh means it is a linux executable script . sh basically stands for '[[shell]]' so it is a script the [[terminal]] can run with its built in commands.)
2.compile/build.


Revision [32128]

Edited on 2018-09-22 15:27:39 by PageStep007 [link to salckbuilds added]
Additions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. In Linux they have a .so extension and in windows they have .dll extension. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process as well as the files needed to run the program. This jumble will not run in this state. It needs to be 'compiled'.
Deletions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process as well as the files needed to run the program. This jumble will not run in this state. It needs to be 'compiled'.


Revision [32127]

Edited on 2018-09-22 15:25:40 by PageStep007 [link to salckbuilds added]
Additions:
===What is compiling?===
===Overview===
===Compiling===
===The next three steps are:===
Deletions:
==What is compiling?==
==Overview==
==Compiling==
==The next three steps are:==


Revision [32126]

Edited on 2018-09-22 15:24:35 by PageStep007 [link to salckbuilds added]
Additions:
==The next three steps are:==
Deletions:
=The next three steps are:=


Revision [32125]

Edited on 2018-09-22 15:23:53 by PageStep007 [text added]
Additions:
==What is compiling?==
It is the process of getting a program organized to work on a particular system.
=The next three steps are:=
1. configuration.
The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same. If there is an 'autogen.sh' file, it also does basically the same as 'configure, (the .sh means it is a linux executable script . sh basically stands for '[[shell]]' so it is a script the [[terminal]] can run with its built in commands.)
2.compile/build.
The compiling program (gcc ,make, CMake) will build or 'make' the program customized for your system, in doing so it makes a directory and writes, rewrites, and otherwise organizes the program according to what the configure program found. ( With this done a .pet can be made here)

3.Install.
The 'configured' and 'compiled/built/made' program, can be installed, usually with a 'make install' (without the quotes and a space between the two words) command in the terminal
Deletions:
The next three steps are:
1. The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same
2. The compiling program (gcc ,make, CMake) will build or 'make' the program customized for your system, in doing so it makes a directory and writes, rewrites, and otherwise organizes the program according to what the configure program found. ( With this done a .pet can be made here)
3. The 'configured' and 'compiled/built/made' program, can be installed, usually with a 'make install' (without the quotes and a space between the two words) command in the terminal


Revision [32124]

Edited on 2018-09-21 14:03:20 by PageStep007 [text added]
Additions:
This compiling is done from the [[Console]] /[[terminal]]/[[Shell]]. Although recent versions of CMake do have a [[GUI]] (Graphical User Interface).
Deletions:
This compiling is done from the [[Console]] /[[terminal]]/[[Shell]].


Revision [32123]

Edited on 2018-09-21 14:00:06 by PageStep007 [text added]
Additions:
==Compiling==
Deletions:
--Compiling--


Revision [32122]

Edited on 2018-09-21 13:59:31 by PageStep007 [text added]
Additions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process as well as the files needed to run the program. This jumble will not run in this state. It needs to be 'compiled'.
--Compiling--
Deletions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process.


Revision [32121]

Edited on 2018-09-21 12:58:13 by PageStep007 [added info]
Additions:
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. has the 'make' program in it. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use at different points. Usually you need to do the compiling process through a [[terminal]] (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.
This compiling is done from the [[Console]] /[[terminal]]/[[Shell]].
There are about six steps in the overall compiling process
1. Downloading the sources,
2. Unpacking the sources,
3. Creating a makefile, or configuring
4. Compiling,
5. Installing,
6. Deleting the sources.

The first two can be done from the terminal or from the file browser. Downloading, you obviously download your source package from wherever you are getting it from. It might be something that ends in a .tar.gz . Then you extract it. It is easier to just click on the downloaded package and the XArchiver opens it, you choose 'select all', then 'extract'. It will usually make a directory in the same place unless you tell it to extract to somewhere else. The result will be a collection of files and directories in that Directory. That was the easy part.
The next three steps are:
1. The source package needs to be configured. A program needs to be run which goes and checks your system to see what it is, how it is structured, and what resources that the source is interested in, are present on the system . It will make some files with that information noted. Often that is in a makefile.txt file. If the source comes already configured, it is likely to have the makefile.txt file. It may come with a file called 'configure', in which case the command ./configure can be typed. (the dot means 'this directory', the slash means 'run or execute' a file, 'configure' means the file with the name 'configure'. That command will run the configure program. There may be a file called 'bootstrap' or even both. Bootstrap will do the same
2. The compiling program (gcc ,make, CMake) will build or 'make' the program customized for your system, in doing so it makes a directory and writes, rewrites, and otherwise organizes the program according to what the configure program found. ( With this done a .pet can be made here)
3. The 'configured' and 'compiled/built/made' program, can be installed, usually with a 'make install' (without the quotes and a space between the two words) command in the terminal
Then all the source and intermediate files can be deleted as they have done their job.
Deletions:
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a [[terminal]] (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.
This compiling is done from the [[Console]] /[[terminal]]/[[Shell]].


Revision [32120]

Edited on 2018-09-21 12:24:48 by PageStep007 [added info]
Additions:
~[[https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html gcc and Make tutorial.]]
Deletions:
==Compiling Links==
~
~
~[[https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html ]] gcc and Make tutorial.
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile ]] Compiling guide on Puppy wiki at archive.org .


Revision [32119]

Edited on 2018-09-21 12:22:47 by PageStep007 [added info]
Additions:
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile ]] Compiling guide on Puppy wiki at archive.org .
Deletions:
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .


Revision [32118]

Edited on 2018-09-21 12:22:10 by PageStep007 [added info]
Additions:
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .
Deletions:
~[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .


Revision [32117]

Edited on 2018-09-21 12:21:50 by PageStep007 [added info]
Additions:
~[[https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html ]] gcc and Make tutorial.
~[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .
Deletions:
~[[https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html ]] gcc and Make tutorial.
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .


Revision [32116]

Edited on 2018-09-21 12:21:14 by PageStep007 [link to compiling guide]
Additions:
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile]] Compiling guide on Puppy wiki at archive.org .


Revision [32115]

Edited on 2018-09-21 12:15:23 by PageStep007 [link to compiling guide]
Additions:
==Related Web Pages==
Deletions:
--Related Web Pages--


Revision [32114]

Edited on 2018-09-21 12:14:30 by PageStep007 [link to compiling guide]
Additions:
--Related Web Pages--
Deletions:
~Related Web Pages


Revision [32113]

Edited on 2018-09-21 12:13:57 by PageStep007 [added link to gcc tutorial]
Additions:
~
~
~Related Web Pages
~[[https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html ]] gcc and Make tutorial.


Revision [32102]

Edited on 2018-09-19 14:33:03 by PageStep007 [added link to gcc tutorial]
Additions:
This compiling is done from the [[Console]] /[[terminal]]/[[Shell]].
Deletions:
This compiling is done from the console /[[terminal]]/[[Shell]].


Revision [32099]

Edited on 2018-09-19 14:26:39 by PageStep007 [added link to gcc tutorial]
Additions:
This compiling is done from the console /[[terminal]]/[[Shell]].
Deletions:
This compiling is done from the console /[[terminal]].


Revision [32098]

Edited on 2018-09-19 14:22:07 by PageStep007 [added link to gcc tutorial]
Additions:
This compiling is done from the console /[[terminal]].
Deletions:
This compiling is done from the console /terminal.


Revision [32097]

Edited on 2018-09-19 14:21:32 by PageStep007 [added link to gcc tutorial]
Additions:
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a [[terminal]] (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.
Deletions:
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.


Revision [32084]

Edited on 2018-09-19 12:08:51 by PageStep007 [added link to gcc tutorial]
Additions:
Generally Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc. You need to download a compiler which is sometimes specific to your particular puppy.
Deletions:
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc.


Revision [32083]

Edited on 2018-09-19 12:06:40 by PageStep007 [added link to gcc tutorial]
Additions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized in a language that your system can use and into the right directories where the program can find them. You need a program to do that for you. This program is called a 'compiler'.
Deletions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you. This program is called a 'compiler'.


Revision [32082]

Edited on 2018-09-19 12:05:18 by PageStep007 [added link to gcc tutorial]
Additions:
The programmer writes in a text editor, in a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process.
Deletions:
The programmer writes in a text editor, with a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process.


Revision [32081]

Edited on 2018-09-19 12:04:17 by PageStep007 [added link to gcc tutorial]
Additions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you. This program is called a 'compiler'.
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc.
This compiling is done from the console /terminal.
Deletions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you.
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc


Revision [32080]

Edited on 2018-09-19 11:12:11 by PageStep007 [added link to gcc tutorial]
Additions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you.
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc
Deletions:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you. Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.


Revision [32079]

Edited on 2018-09-19 11:10:28 by PageStep007 [added link to gcc tutorial]
Additions:
There are many operating systems in use today in computing. Many programs are written for a particular system and are system specific. However more and more, programs are being written for various operating systems at the same time. These are cross-platform programs. It is therefore necessary to back up a little and first write the program with no system in mind, then have a system whereby the program will install on any of the systems. The 'no-system-in-mind' code, is 'Source Code'.
The programmer writes in a text editor, with a code language of choice, and to be more efficient, often use code other people have written. These are often called libraries. The programmer may assume you already have the libraries on your system. This is particularly true if they are writing for a specific system, but they may use open source libraries. The source code package therefore gets to look like a huge jumble of files, but they include files which organize and check for you in the installation process.


Revision [32078]

Edited on 2018-09-19 10:06:32 by PageStep007 [link to Barry's explaination is broken]
Deletions:
~[[http://bkhome.org/blog/?viewDetailed=00703 Explanation by Barry Kauler]]


Revision [31991]

Edited on 2018-05-10 13:35:25 by darkcity [~[[http://puppylinux.com/development/createpet.htm]
Deletions:
~[[http://puppylinux.com/development/createpet.htm How to make Pet packages]]


Revision [31990]

Edited on 2018-05-10 13:35:15 by darkcity [==Pets==]
Additions:
~[[Pets|PET files]]


Revision [31984]

Edited on 2018-04-26 11:03:41 by darkcity [format]
Additions:
====Compiling====
==Overview==
==Compiling Links==
Deletions:
Overview:
====Compiling Links====


Revision [31971]

Edited on 2018-04-14 16:09:20 by PageStep007 [format]
Additions:
Overview:
Source code is the basic code for a program before taking into account what system it is going to run on. The program won't run unless the files are first organized into the right directories and in a language that your system can use. You need a program to do that for you. Usually you need to do the compiling process through a terminal (console) with typed commands such as cmake, make, install, etc
Generally the Puppy systems don't come with a program to make that happen. You need a compiling program to do that, for example devx_slacko_5.7.0.sfs. Different code writers have different procedures in compiling. So you need to know what method they use to know which commands to use.


Revision [30848]

Edited on 2016-06-19 16:05:45 by darkcity [~[[https://web.archive.org/web/20130530092121/htt]
Additions:
~[[https://web.archive.org/web/20130530092121/http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux (puppy.b0x.me archive)]]
Deletions:
~[[http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux]]


Revision [30616]

Edited on 2015-02-21 12:25:13 by don570 [link added pet packages]
Additions:
~[[http://puppylinux.com/development/createpet.htm How to make Pet packages]]


Revision [30615]

Edited on 2015-02-21 12:22:08 by don570 [link added - compiling]
Additions:
~[[http://bkhome.org/blog/?viewDetailed=00703 Explanation by Barry Kauler]]


Revision [29531]

Edited on 2013-11-18 06:04:57 by darkcity [link added - compiling]
Additions:
====Compiling Links====
~[[http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux]]
~[[compilingIndex Compiling Index]]
Deletions:
====Compiling Information====
Please see - [[http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux]]
[[compilingIndex Compiling Index]]


Revision [23177]

Edited on 2012-08-09 06:25:05 by darkcity [expand]
Additions:
[[HomePage]] > [[ComponentHowTo Components and HowTos]] > [[CompilingIndex Compiling]]
====Compiling Information====
Please see - [[http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux]]
==Also on the wiki==
[[compilingIndex Compiling Index]]
Deletions:
====[[http://puppy.b0x.me/wiki/doku.php?id=compile How to compile within Puppy Linux]]====


Revision [23128]

The oldest known version of this page was created on 2012-08-09 04:33:03 by coolpup [expand]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki