Skip to content
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
2 changes: 2 additions & 0 deletions ci/vcpkg/overlay/llvm/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
set(VCPKG_POLICY_ALLOW_EMPTY_FOLDERS enabled)

vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
# Only build release configuration to speed up build time
set(VCPKG_BUILD_TYPE release)

# [BOLT] Allow to compile with MSVC (#151189)
vcpkg_download_distfile(
Expand Down
1 change: 0 additions & 1 deletion cpp/src/gandiva/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ add_gandiva_test(internals-test
hash_utils_test.cc
gdv_function_stubs_test.cc
interval_holder_test.cc
target_datalayout_test.cc
tests/test_util.cc
EXTRA_LINK_LIBS
re2::re2
Expand Down
1 change: 0 additions & 1 deletion cpp/src/gandiva/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ Engine::Engine(const std::shared_ptr<Configuration>& conf,
// LLVM 10 doesn't like the expr function name to be the same as the module name
auto module_id = "gdv_module_" + std::to_string(reinterpret_cast<uintptr_t>(this));
module_ = std::make_unique<llvm::Module>(module_id, *context_);
module_->setDataLayout(target_machine_->createDataLayout());
}

Engine::~Engine() {}
Expand Down
64 changes: 0 additions & 64 deletions cpp/src/gandiva/target_datalayout_test.cc

This file was deleted.

Loading