Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
86f9f1df
Commit
86f9f1df
authored
May 01, 2017
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: CI doesn't build with debugging symbols
Solution: pass -g so that valgrind/asan can print useful backtraces
parent
11e2e5f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ci_build.sh
builds/valgrind/ci_build.sh
+2
-2
ci_build.sh
ci_build.sh
+2
-2
No files found.
builds/valgrind/ci_build.sh
View file @
86f9f1df
...
...
@@ -6,9 +6,9 @@ mkdir tmp
BUILD_PREFIX
=
$PWD
/tmp
CONFIG_OPTS
=()
CONFIG_OPTS+
=(
"CFLAGS=-
I
${
BUILD_PREFIX
}
/include
"
)
CONFIG_OPTS+
=(
"CFLAGS=-
g
"
)
CONFIG_OPTS+
=(
"CPPFLAGS=-I
${
BUILD_PREFIX
}
/include"
)
CONFIG_OPTS+
=(
"CXXFLAGS=-
I
${
BUILD_PREFIX
}
/include
"
)
CONFIG_OPTS+
=(
"CXXFLAGS=-
g
"
)
CONFIG_OPTS+
=(
"LDFLAGS=-L
${
BUILD_PREFIX
}
/lib"
)
CONFIG_OPTS+
=(
"PKG_CONFIG_PATH=
${
BUILD_PREFIX
}
/lib/pkgconfig"
)
CONFIG_OPTS+
=(
"--prefix=
${
BUILD_PREFIX
}
"
)
...
...
ci_build.sh
View file @
86f9f1df
...
...
@@ -8,9 +8,9 @@ if [ $BUILD_TYPE == "default" ]; then
BUILD_PREFIX
=
$PWD
/tmp
CONFIG_OPTS
=()
CONFIG_OPTS+
=(
"CFLAGS=-
I
${
BUILD_PREFIX
}
/include
"
)
CONFIG_OPTS+
=(
"CFLAGS=-
g
"
)
CONFIG_OPTS+
=(
"CPPFLAGS=-I
${
BUILD_PREFIX
}
/include"
)
CONFIG_OPTS+
=(
"CXXFLAGS=-
I
${
BUILD_PREFIX
}
/include
"
)
CONFIG_OPTS+
=(
"CXXFLAGS=-
g
"
)
CONFIG_OPTS+
=(
"LDFLAGS=-L
${
BUILD_PREFIX
}
/lib"
)
CONFIG_OPTS+
=(
"PKG_CONFIG_PATH=
${
BUILD_PREFIX
}
/lib/pkgconfig"
)
CONFIG_OPTS+
=(
"--prefix=
${
BUILD_PREFIX
}
"
)
...
...
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