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
a5feb98c
Commit
a5feb98c
authored
Nov 13, 2016
by
Kosov Eugene
Committed by
Aleksey Midenkov
May 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scripts: collect and reprint warnings
Closes #73
parent
d54d36c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
BUILD/capture_warnings.sh
BUILD/capture_warnings.sh
+17
-0
CMakeLists.txt
CMakeLists.txt
+14
-0
No files found.
BUILD/capture_warnings.sh
0 → 100644
View file @
a5feb98c
#!/bin/bash
warn_path
=
$1
shift
warn_file
=
"
$warn_path
/compile.warnings"
set
-o
pipefail
exec
3>&1
x
=
$((
"
$@
"
>&
2
)
2
>&
1
1
>&
3
)
error
=
${
PIPESTATUS
}
if
!
[[
-
z
"
$x
"
]]
;
then
echo
-
n
"
$x
"
>>
$warn_file
echo
-
n
"
$x
"
>&
2
fi
exit
${
error
}
CMakeLists.txt
View file @
a5feb98c
...
...
@@ -480,3 +480,17 @@ IF(NON_DISTRIBUTABLE_WARNING)
MESSAGE
(
WARNING
"
You have linked MariaDB with GPLv3 libraries! You may not distribute the resulting binary. If you do, you will put yourself into a legal problem with Free Software Foundation."
)
ENDIF
()
IF
(
CMAKE_BUILD_TYPE MATCHES
"Debug"
)
SET_DIRECTORY_PROPERTIES
(
PROPERTIES RULE_LAUNCH_COMPILE
"bash
${
CMAKE_SOURCE_DIR
}
/BUILD/capture_warnings.sh
${
CMAKE_BINARY_DIR
}
"
)
SET_DIRECTORY_PROPERTIES
(
PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
"
${
CMAKE_BINARY_DIR
}
/compile.warnings"
)
ADD_CUSTOM_TARGET
(
REMOVE_WARNINGS_FILE ALL
COMMAND rm -f
"compile.warnings"
WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
)
ADD_CUSTOM_TARGET
(
REPRINT ALL
COMMAND if [ -f
"compile.warnings"
]; then cat
"compile.warnings"
\; fi
DEPENDS mysql udf_example explain_filename-t REMOVE_WARNINGS_FILE
WORKING_DIRECTORY
"
${
CMAKE_BINARY_DIR
}
"
)
ENDIF
()
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