Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mattias Ellert
CMake
Commits
ba58264a
Commit
ba58264a
authored
19 years ago
by
Bill Hoffman
Browse files
Options
Downloads
Patches
Plain Diff
BUG: handle case insensitive library extensions on windows
parent
a5be6b84
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/cmOrderLinkDirectories.cxx
+28
-1
28 additions, 1 deletion
Source/cmOrderLinkDirectories.cxx
Source/cmOrderLinkDirectories.h
+1
-0
1 addition, 0 deletions
Source/cmOrderLinkDirectories.h
with
29 additions
and
1 deletion
Source/cmOrderLinkDirectories.cxx
+
28
−
1
View file @
ba58264a
#include
"cmOrderLinkDirectories.h"
#include
"cmSystemTools.h"
#include
"cmsys/RegularExpression.hxx"
#include
<ctype.h>
//-------------------------------------------------------------------
...
...
@@ -78,6 +78,29 @@ void cmOrderLinkDirectories::FindIndividualLibraryOrders()
}
}
//-------------------------------------------------------------------
std
::
string
cmOrderLinkDirectories
::
NoCaseExpression
(
const
char
*
str
)
{
std
::
string
ret
;
const
char
*
s
=
str
;
while
(
*
s
)
{
if
(
*
s
==
'.'
)
{
ret
+=
*
s
;
}
else
{
ret
+=
"["
;
ret
+=
tolower
(
*
s
);
ret
+=
toupper
(
*
s
);
ret
+=
"]"
;
}
s
++
;
}
return
ret
;
}
//-------------------------------------------------------------------
void
cmOrderLinkDirectories
::
CreateRegularExpressions
()
{
...
...
@@ -92,7 +115,11 @@ void cmOrderLinkDirectories::CreateRegularExpressions()
}
first
=
false
;
libext
+=
"
\\
"
;
#ifndef _WIN32
libext
+=
*
i
;
#else
libext
+=
this
->
NoCaseExpression
(
i
->
c_str
());
#endif
}
libext
+=
").*"
;
cmStdString
reg
(
"(.*)"
);
...
...
This diff is collapsed.
Click to expand it.
Source/cmOrderLinkDirectories.h
+
1
−
0
View file @
ba58264a
...
...
@@ -98,6 +98,7 @@ private:
std
::
map
<
cmStdString
,
std
::
vector
<
cmStdString
>
>&
m
);
void
OrderPaths
(
std
::
vector
<
cmStdString
>&
paths
);
bool
FindPathNotInDirectoryToAfterList
(
cmStdString
&
path
);
std
::
string
NoCaseExpression
(
const
char
*
str
);
private
:
// map from library to directories that it is in other than its full path
std
::
map
<
cmStdString
,
std
::
vector
<
cmStdString
>
>
m_LibraryToDirectories
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment