I installed Google go to CentOS on VMWare. I will use it.
2009/11/20
2009/11/15
Google Go - Preparation
I tried installation into Cento OS 5.3 on VMWare.
Preparation
Easy Install, the Python Package Manager.
- # wget http://peak.telecommunity.com/dist/ez_setup.py
- # python ez_setup.py
Mercurial, the Versioning System
- # easy_install Mercurial
Although I use Subversion, Google Go language requires the Mercurial...
Suppress Beep on Linux
Configuration file is in the following on CentOS:
/etc/initrc
write or comment out the folowing:set bell-style none
2009/11/05
Boost ProgramOptions Link Error
Boost Program-Options occurs link error on dynamic linking.
Its reason is here. (See also here and here)
The following is patched.
In file options_description.hpp, line 158: Replaced
static const unsigned m_default_line_length;
withBOOST_STATIC_CONSTANT (unsigned, m_default_line_length = 80);This is an old fix that I found in the mail archives (2005), seems to have been erroneously dropped from the base-line.
In file options_description.cpp: removed the declaration of
m_default_line_length.
arg() is not fixed now, since I can use static version of Program-Options.
How to set parameters to debugging program on Visual Studio 2019 with CMake
Solution: MSDN Sometimes the "Debug and Launch Settings for CMake" bottun is disabled. In this case, change to the target view. ...
-
Enterprise Architect(EA) is a UML tool by SSJ, which supports UML 2.1 since EA version 6.5. Now, I use the tool for UML 2.0 and does not che...
-
sc create svnserve binPath= "\"C:\Program Files\subversion\bin\svnserve.exe\" --service --listen-host=0.0.0.0 --root c:\svnro...
-
Multicharacter Literal is defined at 2.13.2 Character Literals of ISO/IEC14882:2003. The multicharacter literal contains more than one c-ch...