Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ccommon update #323

Merged
merged 4 commits into from
Mar 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export CTEST_OUTPUT_ON_FAILURE=1

# build CDB in CI or else stuff breaks
if [[ -n "${RUST_ENABLED:-}" ]]; then
cmake_cmd+=( -DTARGET_CDB=yes -DTARGET_HTTP=yes -DHAVE_RUST=yes -DRUST_VERBOSE_BUILD=yes )
cmake_cmd+=( -DTARGET_CDB=yes -DHAVE_RUST=yes -DRUST_VERBOSE_BUILD=yes )
fi

mkdir -p _build && ( cd _build && "${cmake_cmd[@]}" .. && make && make test ) || die 'make failed'
Expand Down
3 changes: 2 additions & 1 deletion deps/ccommon/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
# Automatically generated files
COPYING
INSTALL
include/config.h

# Temporary
*.swp
Expand Down Expand Up @@ -52,4 +53,4 @@ bindings.rs
Cargo.lock

# Cargo build path
target
target
2 changes: 1 addition & 1 deletion deps/ccommon/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ check_function_exists(accept4 HAVE_ACCEPT4)
# this has to be set _after_ the above checks
configure_file(
"${PROJECT_SOURCE_DIR}/config.h.in"
"${PROJECT_BINARY_DIR}/config.h")
"${PROJECT_SOURCE_DIR}/include/config.h")


##########################
Expand Down
Loading