Fix some spelling errors in comments
This commit is contained in:
parent
a358448d3e
commit
bef23e8181
|
@ -39,7 +39,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -318,7 +318,7 @@ void cmGlobalGenerator::FindMakeProgram(cmMakefile* mf)
|
|||
// will run xcodebuild and if it sees the error text file busy
|
||||
// it will stop forwarding output, and let the build finish.
|
||||
// Then it will retry the build. It will continue this
|
||||
// untill no text file busy errors occur.
|
||||
// until no text file busy errors occur.
|
||||
std::string cmakexbuild =
|
||||
this->CMakeInstance->GetCacheManager()->GetCacheValue("CMAKE_COMMAND");
|
||||
cmakexbuild = cmakexbuild.substr(0, cmakexbuild.length()-5);
|
||||
|
@ -1008,9 +1008,9 @@ void cmGlobalGenerator::SetLanguageEnabledMaps(const std::string& l,
|
|||
if (sscanf(linkerPref, "%d", &preference)!=1)
|
||||
{
|
||||
// backward compatibility: before 2.6 LINKER_PREFERENCE
|
||||
// was either "None" or "Prefered", and only the first character was
|
||||
// was either "None" or "Preferred", and only the first character was
|
||||
// tested. So if there is a custom language out there and it is
|
||||
// "Prefered", set its preference high
|
||||
// "Preferred", set its preference high
|
||||
if (linkerPref[0]=='P')
|
||||
{
|
||||
preference = 100;
|
||||
|
|
|
@ -39,7 +39,7 @@ class cmExportBuildFileGenerator;
|
|||
class cmQtAutoGenerators;
|
||||
|
||||
/** \class cmGlobalGenerator
|
||||
* \brief Responable for overseeing the generation process for the entire tree
|
||||
* \brief Responsible for overseeing the generation process for the entire tree
|
||||
*
|
||||
* Subclasses of this class generate makefiles for various
|
||||
* platforms.
|
||||
|
@ -94,7 +94,7 @@ public:
|
|||
void ClearEnabledLanguages();
|
||||
void GetEnabledLanguages(std::vector<std::string>& lang) const;
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
@ -108,7 +108,7 @@ public:
|
|||
bool optional) const;
|
||||
|
||||
/**
|
||||
* Try to determine system infomation, get it from another generator
|
||||
* Try to determine system information, get it from another generator
|
||||
*/
|
||||
virtual void EnableLanguagesFromGenerator(cmGlobalGenerator *gen,
|
||||
cmMakefile* mf);
|
||||
|
@ -198,7 +198,7 @@ public:
|
|||
std::string GetLanguageFromExtension(const char* ext) const;
|
||||
///! is an extension to be ignored
|
||||
bool IgnoreFile(const char* ext) const;
|
||||
///! What is the preference for linkers and this language (None or Prefered)
|
||||
///! What is the preference for linkers and this language (None or Preferred)
|
||||
int GetLinkerPreference(const std::string& lang) const;
|
||||
///! What is the object file extension for a given source file?
|
||||
std::string GetLanguageOutputExtension(cmSourceFile const&) const;
|
||||
|
|
|
@ -40,7 +40,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -39,7 +39,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -337,7 +337,7 @@ private:
|
|||
|
||||
std::string ninjaCmd() const;
|
||||
|
||||
/// The file containing the build statement. (the relation ship of the
|
||||
/// The file containing the build statement. (the relationship of the
|
||||
/// compilation DAG).
|
||||
cmGeneratedFileStream* BuildFileStream;
|
||||
/// The file containing the rule statements. (The action attached to each
|
||||
|
|
|
@ -71,7 +71,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -49,7 +49,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -42,7 +42,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -52,7 +52,7 @@ public:
|
|||
static void GetDocumentation(cmDocumentationEntry& entry);
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -32,7 +32,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void WriteSLNHeader(std::ostream& fout);
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -44,7 +44,7 @@ public:
|
|||
virtual cmLocalGenerator *CreateLocalGenerator();
|
||||
|
||||
/**
|
||||
* Try to determine system infomation such as shared library
|
||||
* Try to determine system information such as shared library
|
||||
* extension, pthreads, byte order etc.
|
||||
*/
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
|
|
|
@ -85,7 +85,7 @@ static int archive_write_lzop_free(struct archive_write_filter *);
|
|||
#if defined(HAVE_LZO_LZOCONF_H) && defined(HAVE_LZO_LZO1X_H)
|
||||
/* Maximum block size. */
|
||||
#define BLOCK_SIZE (256 * 1024)
|
||||
/* Block infomation is composed of uncompressed size(4 bytes),
|
||||
/* Block information is composed of uncompressed size(4 bytes),
|
||||
* compressed size(4 bytes) and the checksum of uncompressed data(4 bytes)
|
||||
* in this lzop writer. */
|
||||
#define BLOCK_INfO_SIZE 12
|
||||
|
|
|
@ -1115,7 +1115,7 @@ write_mtree_entry_tree(struct archive_write *a)
|
|||
do {
|
||||
if (mtree->output_global_set) {
|
||||
/*
|
||||
* Collect attribute infomation to know which value
|
||||
* Collect attribute information to know which value
|
||||
* is frequently used among the children.
|
||||
*/
|
||||
attr_counter_set_reset(mtree);
|
||||
|
|
Loading…
Reference in New Issue