<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gandi</id>
	<title>Code::Blocks - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gandi"/>
	<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php/Special:Contributions/Gandi"/>
	<updated>2026-05-16T23:01:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9517</id>
		<title>Installing Code::Blocks from source on Mageia 7</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9517"/>
		<updated>2021-01-04T17:14:52Z</updated>

		<summary type="html">&lt;p&gt;Gandi: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This a small tutorial from this original french web site:&lt;br /&gt;
[http://www.suryavarman.fr/compiler-codeblocks-sur-mageia7/]&lt;br /&gt;
&lt;br /&gt;
Here the translation:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Download the sources: ==&lt;br /&gt;
&lt;br /&gt;
For this small tutorial, i propose to create a folder: Codeblocks.&lt;br /&gt;
And to open a console at this path.&lt;br /&gt;
&lt;br /&gt;
The hierarchy will be like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/Codeblocks*&lt;br /&gt;
           |&lt;br /&gt;
           *-/bin                         # binaries generated by the command&lt;br /&gt;
           |                              # «make install»&lt;br /&gt;
           |&lt;br /&gt;
           *-/codeblocks-code*            # sources&lt;br /&gt;
           |                 |&lt;br /&gt;
           |                 *-configure  # generate by «bootstrap»&lt;br /&gt;
           |&lt;br /&gt;
           *-build.sh                     # This script generate the «configure»&lt;br /&gt;
                                          # file, make and build the solution.&lt;br /&gt;
                                          # The binaries will be install into&lt;br /&gt;
                                          # the «bin» folder.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First clone the Codeblocks repository :&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The folder will be like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;...\Codeblocks\codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It's propable that the transfer failed lots of time. To pass-through you have to repeat the checkout like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn cleanup&lt;br /&gt;
cd ..&lt;br /&gt;
svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Install the dependancies: ==&lt;br /&gt;
&lt;br /&gt;
Remark for hunspell select your languages.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
urpmi autoconf libtool automake lib64squirrel-devel hunspell hunspell-fr hunspell-en lib64hunspell-devel lib64wxgtku3.0-devel lib64tinyxml-devel lib64gamin-devel&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the repository, build and install localy:&lt;br /&gt;
&lt;br /&gt;
The build will be install into the folder Codeblocks/bin.&lt;br /&gt;
To that execute the next script in the Codeblocks folder.&lt;br /&gt;
&lt;br /&gt;
build.sh:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
# Absolute path to this script, e.g. /home/user/bin/foo.sh&lt;br /&gt;
SCRIPT=$(readlink -f &amp;quot;$0&amp;quot;)&lt;br /&gt;
# Absolute path this script is in, thus /home/user/bin&lt;br /&gt;
SCRIPTPATH=$(dirname &amp;quot;$SCRIPT&amp;quot;)&lt;br /&gt;
cd &amp;quot;$SCRIPTPATH&amp;quot;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn revert --recursive .&lt;br /&gt;
svn update&lt;br /&gt;
# You can call «cd codeblock-code | svn cleanup --remove-unversioned» before to launch this script to clean all the generated files.&lt;br /&gt;
if [ -f ./configure ]; then&lt;br /&gt;
    make clean&lt;br /&gt;
    make distclean&lt;br /&gt;
    make clean-bin&lt;br /&gt;
    make clean-zipfiles   &lt;br /&gt;
else&lt;br /&gt;
    ./bootstrap&lt;br /&gt;
fi&lt;br /&gt;
./configure --prefix=&amp;quot;$SCRIPTPATH/bin&amp;quot; --with-contrib-plugins=all&lt;br /&gt;
make -j $(($(nproc) -1))&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Trobleshooting: ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
./configure: line 21397: AM_OPTIONS_WXCONFIG: command not found&lt;br /&gt;
./configure: line 21398: syntax error near unexpected token `3.0.0,'&lt;br /&gt;
./configure: line 21398: `AM_PATH_WXCONFIG(3.0.0, wxWin=1)'&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Maybe you have generate the ./configure file before to have install the wx3 dev libraries. You can try to clean all the generated files like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblock-code&lt;br /&gt;
svn cleanup --remove-unversioned&lt;br /&gt;
cd ..&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After that call again the last script build.sh.&lt;br /&gt;
&lt;br /&gt;
If it doesn't work you can begin an investigation here:&lt;br /&gt;
https://wiki.wxwidgets.org/Autoconf&lt;/div&gt;</summary>
		<author><name>Gandi</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9516</id>
		<title>Installing Code::Blocks from source on Mageia 7</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9516"/>
		<updated>2021-01-04T17:13:52Z</updated>

		<summary type="html">&lt;p&gt;Gandi: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This a small tutorial from this original french web site:&lt;br /&gt;
[http://www.suryavarman.fr/compiler-codeblocks-sur-mageia7/]&lt;br /&gt;
&lt;br /&gt;
Here the translation:&lt;br /&gt;
&lt;br /&gt;
Download the sources:&lt;br /&gt;
For this small tutorial, i propose to create a folder: Codeblocks.&lt;br /&gt;
And to open a console at this path.&lt;br /&gt;
&lt;br /&gt;
The hierarchy will be like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/Codeblocks*&lt;br /&gt;
           |&lt;br /&gt;
           *-/bin                         # binaries generated by the command&lt;br /&gt;
           |                              # «make install»&lt;br /&gt;
           |&lt;br /&gt;
           *-/codeblocks-code*            # sources&lt;br /&gt;
           |                 |&lt;br /&gt;
           |                 *-configure  # generate by «bootstrap»&lt;br /&gt;
           |&lt;br /&gt;
           *-build.sh                     # This script generate the «configure»&lt;br /&gt;
                                          # file, make and build the solution.&lt;br /&gt;
                                          # The binaries will be install into&lt;br /&gt;
                                          # the «bin» folder.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First clone the Codeblocks repository :&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The folder will be like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;...\Codeblocks\codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It's propable that the transfer failed lots of time. To pass-through you have to repeat the checkout like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn cleanup&lt;br /&gt;
cd ..&lt;br /&gt;
svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the dependancies:&lt;br /&gt;
Remark for hunspell select your languages.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
urpmi autoconf libtool automake lib64squirrel-devel hunspell hunspell-fr hunspell-en lib64hunspell-devel lib64wxgtku3.0-devel lib64tinyxml-devel lib64gamin-devel&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the repository, build and install localy:&lt;br /&gt;
&lt;br /&gt;
The build will be install into the folder Codeblocks/bin.&lt;br /&gt;
To that execute the next script in the Codeblocks folder.&lt;br /&gt;
&lt;br /&gt;
build.sh:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
# Absolute path to this script, e.g. /home/user/bin/foo.sh&lt;br /&gt;
SCRIPT=$(readlink -f &amp;quot;$0&amp;quot;)&lt;br /&gt;
# Absolute path this script is in, thus /home/user/bin&lt;br /&gt;
SCRIPTPATH=$(dirname &amp;quot;$SCRIPT&amp;quot;)&lt;br /&gt;
cd &amp;quot;$SCRIPTPATH&amp;quot;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn revert --recursive .&lt;br /&gt;
svn update&lt;br /&gt;
# You can call «cd codeblock-code | svn cleanup --remove-unversioned» before to launch this script to clean all the generated files.&lt;br /&gt;
if [ -f ./configure ]; then&lt;br /&gt;
    make clean&lt;br /&gt;
    make distclean&lt;br /&gt;
    make clean-bin&lt;br /&gt;
    make clean-zipfiles   &lt;br /&gt;
else&lt;br /&gt;
    ./bootstrap&lt;br /&gt;
fi&lt;br /&gt;
./configure --prefix=&amp;quot;$SCRIPTPATH/bin&amp;quot; --with-contrib-plugins=all&lt;br /&gt;
make -j $(($(nproc) -1))&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Trobleshooting:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
./configure: line 21397: AM_OPTIONS_WXCONFIG: command not found&lt;br /&gt;
./configure: line 21398: syntax error near unexpected token `3.0.0,'&lt;br /&gt;
./configure: line 21398: `AM_PATH_WXCONFIG(3.0.0, wxWin=1)'&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Maybe you have generate the ./configure file before to have install the wx3 dev libraries. You can try to clean all the generated files like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblock-code&lt;br /&gt;
svn cleanup --remove-unversioned&lt;br /&gt;
cd ..&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After that call again the last script build.sh.&lt;br /&gt;
&lt;br /&gt;
If it doesn't work you can begin an investigation here:&lt;br /&gt;
https://wiki.wxwidgets.org/Autoconf&lt;/div&gt;</summary>
		<author><name>Gandi</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9515</id>
		<title>Installing Code::Blocks from source on Mageia 7</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9515"/>
		<updated>2021-01-04T17:12:55Z</updated>

		<summary type="html">&lt;p&gt;Gandi: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This a small tutorial from my own web site:&lt;br /&gt;
[http://www.suryavarman.fr/compiler-codeblocks-sur-mageia7/]&lt;br /&gt;
&lt;br /&gt;
Here the translation:&lt;br /&gt;
&lt;br /&gt;
Download the sources:&lt;br /&gt;
For this small tutorial, i propose to create a folder: Codeblocks.&lt;br /&gt;
And to open a console at this path.&lt;br /&gt;
&lt;br /&gt;
The hierarchy will be like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/Codeblocks*&lt;br /&gt;
           |&lt;br /&gt;
           *-/bin                         # binaries generated by the command&lt;br /&gt;
           |                              # «make install»&lt;br /&gt;
           |&lt;br /&gt;
           *-/codeblocks-code*            # sources&lt;br /&gt;
           |                 |&lt;br /&gt;
           |                 *-configure  # generate by «bootstrap»&lt;br /&gt;
           |&lt;br /&gt;
           *-build.sh                     # This script generate the «configure»&lt;br /&gt;
                                          # file, make and build the solution.&lt;br /&gt;
                                          # The binaries will be install into&lt;br /&gt;
                                          # the «bin» folder.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First clone the Codeblocks repository :&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The folder will be like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;...\Codeblocks\codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It's propable that the transfer failed lots of time. To pass-through you have to repeat the checkout like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn cleanup&lt;br /&gt;
cd ..&lt;br /&gt;
svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the dependancies:&lt;br /&gt;
Remark for hunspell select your languages.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
urpmi autoconf libtool automake lib64squirrel-devel hunspell hunspell-fr hunspell-en lib64hunspell-devel lib64wxgtku3.0-devel lib64tinyxml-devel lib64gamin-devel&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update the repository, build and install localy:&lt;br /&gt;
&lt;br /&gt;
The build will be install into the folder Codeblocks/bin.&lt;br /&gt;
To that execute the next script in the Codeblocks folder.&lt;br /&gt;
&lt;br /&gt;
build.sh:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
# Absolute path to this script, e.g. /home/user/bin/foo.sh&lt;br /&gt;
SCRIPT=$(readlink -f &amp;quot;$0&amp;quot;)&lt;br /&gt;
# Absolute path this script is in, thus /home/user/bin&lt;br /&gt;
SCRIPTPATH=$(dirname &amp;quot;$SCRIPT&amp;quot;)&lt;br /&gt;
cd &amp;quot;$SCRIPTPATH&amp;quot;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn revert --recursive .&lt;br /&gt;
svn update&lt;br /&gt;
# You can call «cd codeblock-code | svn cleanup --remove-unversioned» before to launch this script to clean all the generated files.&lt;br /&gt;
if [ -f ./configure ]; then&lt;br /&gt;
    make clean&lt;br /&gt;
    make distclean&lt;br /&gt;
    make clean-bin&lt;br /&gt;
    make clean-zipfiles   &lt;br /&gt;
else&lt;br /&gt;
    ./bootstrap&lt;br /&gt;
fi&lt;br /&gt;
./configure --prefix=&amp;quot;$SCRIPTPATH/bin&amp;quot; --with-contrib-plugins=all&lt;br /&gt;
make -j $(($(nproc) -1))&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Trobleshooting:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
./configure: line 21397: AM_OPTIONS_WXCONFIG: command not found&lt;br /&gt;
./configure: line 21398: syntax error near unexpected token `3.0.0,'&lt;br /&gt;
./configure: line 21398: `AM_PATH_WXCONFIG(3.0.0, wxWin=1)'&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Maybe you have generate the ./configure file before to have install the wx3 dev libraries. You can try to clean all the generated files like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblock-code&lt;br /&gt;
svn cleanup --remove-unversioned&lt;br /&gt;
cd ..&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After that call again the last script build.sh.&lt;br /&gt;
&lt;br /&gt;
If it doesn't work you can begin an investigation here:&lt;br /&gt;
https://wiki.wxwidgets.org/Autoconf&lt;/div&gt;</summary>
		<author><name>Gandi</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9514</id>
		<title>Installing Code::Blocks from source on Mageia 7</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Mageia_7&amp;diff=9514"/>
		<updated>2021-01-04T17:10:31Z</updated>

		<summary type="html">&lt;p&gt;Gandi: Created page with &amp;quot;This a small tutorial from my own web site: [http://www.suryavarman.fr/compiler-codeblocks-sur-mageia7/]  Here the translation:  Download the sources: For this small tutorial,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This a small tutorial from my own web site:&lt;br /&gt;
[http://www.suryavarman.fr/compiler-codeblocks-sur-mageia7/]&lt;br /&gt;
&lt;br /&gt;
Here the translation:&lt;br /&gt;
&lt;br /&gt;
Download the sources:&lt;br /&gt;
For this small tutorial, i propose to create a folder: Codeblocks.&lt;br /&gt;
And to open a console at this path.&lt;br /&gt;
&lt;br /&gt;
The hierarchy will be like that:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/Codeblocks*&lt;br /&gt;
           |&lt;br /&gt;
           *-/bin                         # binaries generated by the command&lt;br /&gt;
           |                              # «make install»&lt;br /&gt;
           |&lt;br /&gt;
           *-/codeblocks-code*            # sources&lt;br /&gt;
           |                 |&lt;br /&gt;
           |                 *-configure  # generate by «bootstrap»&lt;br /&gt;
           |&lt;br /&gt;
           *-build.sh                     # This script generate the «configure»&lt;br /&gt;
                                          # file, make and build the solution.&lt;br /&gt;
                                          # The binaries will be install into&lt;br /&gt;
                                          # the «bin» folder.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First clone the Codeblocks repository :&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The folder will be like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;...\Codeblocks\codeblocks-code&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It's propable that the transfer failed lots of time. To pass-through you have to repeat the checkout like that:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd codeblocks-code&lt;br /&gt;
svn cleanup&lt;br /&gt;
cd ..&lt;br /&gt;
svn checkout https://svn.code.sf.net/p/codeblocks/code/trunk codeblocks-code&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the dependancies:&lt;br /&gt;
Remark for hunspell select your languages.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
urpmi autoconf libtool automake lib64squirrel-devel hunspell hunspell-fr hunspell-en lib64hunspell-devel lib64wxgtku3.0-devel lib64tinyxml-devel lib64gamin-devel&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gandi</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks&amp;diff=9513</id>
		<title>Installing Code::Blocks</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks&amp;diff=9513"/>
		<updated>2021-01-04T16:44:14Z</updated>

		<summary type="html">&lt;p&gt;Gandi: /* Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Installing Code::Blocks]]&lt;br /&gt;
__TOC__&lt;br /&gt;
* [[Compiled packages of Code::Blocks]]&lt;br /&gt;
&lt;br /&gt;
== MS Windows ==&lt;br /&gt;
&lt;br /&gt;
* [[Installing the latest official version of Code::Blocks on Windows]]&lt;br /&gt;
* [[Installing Code::Blocks nightly build on Windows]]&lt;br /&gt;
* [[Installing Code::Blocks from source on Windows]]&lt;br /&gt;
&lt;br /&gt;
== Linux ==&lt;br /&gt;
&lt;br /&gt;
* [[Installing Code::Blocks from source on Linux]] (applies to all distros)&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks nightly build on Ubuntu]]&lt;br /&gt;
&lt;br /&gt;
=== Debian ===&lt;br /&gt;
&lt;br /&gt;
:* [http://apt.jenslody.de/ Installing Code::Blocks nightly build on Debian]&lt;br /&gt;
&lt;br /&gt;
=== Fedora ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks nightly build on Fedora]]&lt;br /&gt;
&lt;br /&gt;
=== Blag ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks nightly build on Blag]]&lt;br /&gt;
&lt;br /&gt;
=== Gentoo ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks from source on Gentoo]]&lt;br /&gt;
&lt;br /&gt;
=== Platypux ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks with LZM binary on Platypux]]&lt;br /&gt;
&lt;br /&gt;
=== Arch Linux ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks from source on Arch Linux]]&lt;br /&gt;
&lt;br /&gt;
=== Mageia 7 ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks from source on Mageia 7]]&lt;br /&gt;
&lt;br /&gt;
=== RPM based distributions ===&lt;br /&gt;
&lt;br /&gt;
Such as: Red Hat Linux, Yellow Dog Linux, Fedora Core, CentOS, etc. etc.&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks nightly build on RPM based distributions]]&lt;br /&gt;
:* [[Installing Code::Blocks from source on RPM based distributions]]&lt;br /&gt;
&lt;br /&gt;
== BSD ==&lt;br /&gt;
&lt;br /&gt;
=== FreeBSD ===&lt;br /&gt;
&lt;br /&gt;
:* [[Installing Code::Blocks from source on FreeBSD]]&lt;br /&gt;
&lt;br /&gt;
=== OpenBSD ===&lt;br /&gt;
:* http://openports.se/devel/codeblocks&lt;br /&gt;
&lt;br /&gt;
== Solaris ==&lt;br /&gt;
&lt;br /&gt;
* [[Installing Code::Blocks from source on Solaris]]&lt;br /&gt;
&lt;br /&gt;
== Mac OS X ==&lt;br /&gt;
&lt;br /&gt;
* [[Installing the latest official version of Code::Blocks on Mac OS X]]&lt;br /&gt;
&lt;br /&gt;
* [[Installing Code::Blocks nightly build on Mac OS X]]&lt;br /&gt;
&lt;br /&gt;
* [[Installing Code::Blocks from source on Mac OS X]]&lt;br /&gt;
&lt;br /&gt;
== Derivatives ==&lt;br /&gt;
&lt;br /&gt;
* [http://codeblocks.codecutter.org/ Code::Blocks EDU-Portable] - portable installation configured for learners and instructors of C/C++.&lt;br /&gt;
&lt;br /&gt;
* [http://darmar.vgtu.lt/ Code::Blocks IDE for Fortran] - additional features for Fortran oriented programmers.&lt;br /&gt;
&lt;br /&gt;
==Working on Code::Blocks sources from within Code::Blocks!==&lt;br /&gt;
&lt;br /&gt;
The following applies for all platforms where you have Code::Blocks installed and working.&lt;br /&gt;
&lt;br /&gt;
After correct install of Code::Blocks you will find two folders under .../trunc/src , a directory named &amp;quot;devel&amp;quot; and another one named &amp;quot;output&amp;quot;.&lt;br /&gt;
These two folders will contain the same files and directory structure and you can use the IDE from either of these two directories. This structure has been created so that you can work in Code::Blocks while editing Code::Blocks' sources ;).&lt;br /&gt;
Basically, you'll be using the &amp;quot;output/CodeBlocks.exe&amp;quot; executable. Code::Blocks' project settings are such that all output goes under &amp;quot;devel&amp;quot;. So you can edit Code::Blocks' sources inside Code::Blocks and, when pressing &amp;quot;Run&amp;quot;, it will run the &amp;quot;devel/CodeBlocks.exe&amp;quot; executable ;). This way, you can't ruin the main executable you're using (under &amp;quot;output&amp;quot;). When your changes satisfy you and all works well, quit Code::Blocks, run &amp;quot;make update&amp;quot; from command line and re-launch &amp;quot;output/CodeBlocks.exe&amp;quot;. You'll be working on your brand new IDE!&lt;/div&gt;</summary>
		<author><name>Gandi</name></author>
	</entry>
</feed>