Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bd1573b0
Commit
bd1573b0
authored
Oct 06, 2021
by
Sergei Krivonos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Xcode compatibility update: pcre, mysql-test-run.pl
parent
d2b4d3ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
cmake/pcre.cmake
cmake/pcre.cmake
+10
-9
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-0
No files found.
cmake/pcre.cmake
View file @
bd1573b0
...
...
@@ -11,21 +11,22 @@ MACRO(BUNDLE_PCRE2)
FOREACH
(
lib pcre2-posix pcre2-8
)
ADD_LIBRARY
(
${
lib
}
STATIC IMPORTED GLOBAL
)
ADD_DEPENDENCIES
(
${
lib
}
pcre2
)
GET_PROPERTY
(
MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG
)
IF
(
MULTICONFIG
)
SET
(
intdir
"
${
CMAKE_CFG_INTDIR
}
/"
)
ELSE
()
SET
(
intdir
)
ENDIF
()
SET
(
file
${
dir
}
/src/pcre2-build/
${
intdir
}${
CMAKE_STATIC_LIBRARY_PREFIX
}${
lib
}${
CMAKE_STATIC_LIBRARY_SUFFIX
}
)
IF
(
WIN32
)
# Debug libary name.
# Same condition as in pcre2 CMakeLists.txt that adds "d"
GET_PROPERTY
(
MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG
)
IF
(
MULTICONFIG
)
SET
(
intdir
"
${
CMAKE_CFG_INTDIR
}
/"
)
ELSE
()
SET
(
intdir
)
ENDIF
()
SET
(
file
${
dir
}
/src/pcre2-build/
${
intdir
}${
CMAKE_STATIC_LIBRARY_PREFIX
}${
lib
}${
CMAKE_STATIC_LIBRARY_SUFFIX
}
)
SET
(
file_d
${
dir
}
/src/pcre2-build/
${
intdir
}${
CMAKE_STATIC_LIBRARY_PREFIX
}${
lib
}
d
${
CMAKE_STATIC_LIBRARY_SUFFIX
}
)
SET_TARGET_PROPERTIES
(
${
lib
}
PROPERTIES IMPORTED_LOCATION_DEBUG
${
file_d
}
)
ELSE
()
SET
(
file
${
dir
}
/src/pcre2-build/
${
CMAKE_STATIC_LIBRARY_PREFIX
}${
lib
}${
CMAKE_STATIC_LIBRARY_SUFFIX
}
)
SET
(
file_d
)
ENDIF
()
SET
(
byproducts
${
byproducts
}
BUILD_BYPRODUCTS
${
file
}
${
file_d
}
)
...
...
mysql-test/mysql-test-run.pl
View file @
bd1573b0
...
...
@@ -1260,6 +1260,7 @@ sub command_line_setup {
{
$path_client_bindir
=
mtr_path_exists
("
$bindir
/client_release
",
"
$bindir
/client_debug
",
"
$bindir
/client/debug
",
"
$bindir
/client
$opt_vs_config
",
"
$bindir
/client
",
"
$bindir
/bin
");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment