-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10514ae
commit 645002d
Showing
6 changed files
with
131 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,152 +1,6 @@ | ||
.PHONY: all clean format debug release duckdb_debug duckdb_release pull update wasm_mvp wasm_eh wasm_threads | ||
|
||
all: release | ||
|
||
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) | ||
PROJ_DIR := $(dir $(MKFILE_PATH)) | ||
|
||
TEST_PATH="/test/unittest" | ||
DUCKDB_PATH="/duckdb" | ||
|
||
# For non-MinGW windows the path is slightly different | ||
ifeq ($(OS),Windows_NT) | ||
ifneq ($(CXX),g++) | ||
TEST_PATH="/test/Release/unittest.exe" | ||
DUCKDB_PATH="/Release/duckdb.exe" | ||
endif | ||
endif | ||
|
||
#### OSX config | ||
OSX_BUILD_FLAG= | ||
ifneq (${OSX_BUILD_ARCH}, "") | ||
OSX_BUILD_FLAG=-DOSX_BUILD_ARCH=${OSX_BUILD_ARCH} | ||
endif | ||
|
||
#### VCPKG config | ||
VCPKG_TOOLCHAIN_PATH?= | ||
ifneq ("${VCPKG_TOOLCHAIN_PATH}", "") | ||
TOOLCHAIN_FLAGS:=${TOOLCHAIN_FLAGS} -DVCPKG_MANIFEST_DIR='${PROJ_DIR}' -DVCPKG_BUILD=1 -DCMAKE_TOOLCHAIN_FILE='${VCPKG_TOOLCHAIN_PATH}' | ||
endif | ||
ifneq ("${VCPKG_TARGET_TRIPLET}", "") | ||
TOOLCHAIN_FLAGS:=${TOOLCHAIN_FLAGS} -DVCPKG_TARGET_TRIPLET='${VCPKG_TARGET_TRIPLET}' | ||
endif | ||
|
||
#### Enable Ninja as generator | ||
ifeq ($(GEN),ninja) | ||
GENERATOR=-G "Ninja" -DFORCE_COLORED_OUTPUT=1 | ||
endif | ||
PROJ_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) | ||
|
||
EXT_NAME=quack | ||
EXT_CONFIG=${PROJ_DIR}extension_config.cmake | ||
|
||
#### Configuration for this extension | ||
EXTENSION_NAME=QUACK | ||
EXTENSION_FLAGS=\ | ||
-DDUCKDB_EXTENSION_NAMES="${EXT_NAME}" \ | ||
-DDUCKDB_EXTENSION_${EXTENSION_NAME}_PATH="$(PROJ_DIR)" \ | ||
-DDUCKDB_EXTENSION_${EXTENSION_NAME}_LOAD_TESTS=1 \ | ||
-DDUCKDB_EXTENSION_${EXTENSION_NAME}_INCLUDE_PATH="$(PROJ_DIR)src/include" \ | ||
-DDUCKDB_EXTENSION_${EXTENSION_NAME}_TEST_PATH="$(PROJ_DIR)test/sql" | ||
|
||
#### Add more of the DuckDB in-tree extensions here that you need (also feel free to remove them when not needed) | ||
EXTRA_EXTENSIONS_FLAG=-DBUILD_EXTENSIONS="tpch" | ||
|
||
BUILD_FLAGS=-DEXTENSION_STATIC_BUILD=1 $(EXTENSION_FLAGS) ${EXTRA_EXTENSIONS_FLAG} $(OSX_BUILD_FLAG) $(TOOLCHAIN_FLAGS) -DDUCKDB_EXPLICIT_PLATFORM='${DUCKDB_PLATFORM}' | ||
CLIENT_FLAGS:= | ||
|
||
#### Main build | ||
# For regular CLI build, we link the quack extension directly into the DuckDB executable | ||
CLIENT_FLAGS=-DDUCKDB_EXTENSION_${EXTENSION_NAME}_SHOULD_LINK=1 | ||
|
||
debug: | ||
mkdir -p build/debug && \ | ||
cmake $(GENERATOR) $(BUILD_FLAGS) $(CLIENT_FLAGS) -DCMAKE_BUILD_TYPE=Debug -S ./duckdb/ -B build/debug && \ | ||
cmake --build build/debug --config Debug | ||
|
||
release: | ||
mkdir -p build/release && \ | ||
cmake $(GENERATOR) $(BUILD_FLAGS) $(CLIENT_FLAGS) -DCMAKE_BUILD_TYPE=Release -S ./duckdb/ -B build/release && \ | ||
cmake --build build/release --config Release | ||
|
||
##### Client build | ||
JS_BUILD_FLAGS=-DBUILD_NODE=1 -DDUCKDB_EXTENSION_${EXTENSION_NAME}_SHOULD_LINK=0 | ||
PY_BUILD_FLAGS=-DBUILD_PYTHON=1 -DDUCKDB_EXTENSION_${EXTENSION_NAME}_SHOULD_LINK=0 | ||
|
||
debug_js: CLIENT_FLAGS=$(JS_BUILD_FLAGS) | ||
debug_js: debug | ||
debug_python: CLIENT_FLAGS=$(PY_BUILD_FLAGS) | ||
debug_python: debug | ||
release_js: CLIENT_FLAGS=$(JS_BUILD_FLAGS) | ||
release_js: release | ||
release_python: CLIENT_FLAGS=$(PY_BUILD_FLAGS) | ||
release_python: release | ||
|
||
# Main tests | ||
test: test_release | ||
|
||
test_release: release | ||
./build/release/$(TEST_PATH) "$(PROJ_DIR)test/*" | ||
|
||
test_debug: debug | ||
./build/debug/$(TEST_PATH) "$(PROJ_DIR)test/*" | ||
|
||
#### Client tests | ||
DEBUG_EXT_PATH='$(PROJ_DIR)build/debug/extension/quack/quack.duckdb_extension' | ||
RELEASE_EXT_PATH='$(PROJ_DIR)build/release/extension/quack/quack.duckdb_extension' | ||
|
||
test_js: test_debug_js | ||
|
||
test_debug_js: debug_js | ||
cd duckdb/tools/nodejs && ${EXTENSION_NAME}_EXTENSION_BINARY_PATH=$(DEBUG_EXT_PATH) npm run test-path -- "../../../test/nodejs/**/*.js" | ||
|
||
test_release_js: release_js | ||
cd duckdb/tools/nodejs && ${EXTENSION_NAME}_EXTENSION_BINARY_PATH=$(RELEASE_EXT_PATH) npm run test-path -- "../../../test/nodejs/**/*.js" | ||
|
||
test_python: test_debug_python | ||
|
||
test_debug_python: debug_python | ||
cd test/python && ${EXTENSION_NAME}_EXTENSION_BINARY_PATH=$(DEBUG_EXT_PATH) python3 -m pytest | ||
|
||
test_release_python: release_python | ||
cd test/python && ${EXTENSION_NAME}_EXTENSION_BINARY_PATH=$(RELEASE_EXT_PATH) python3 -m pytest | ||
|
||
#### Misc | ||
format: | ||
find src/ -iname *.hpp -o -iname *.cpp | xargs clang-format --sort-includes=0 -style=file -i | ||
cmake-format -i CMakeLists.txt | ||
update: | ||
git submodule update --remote --merge | ||
pull: | ||
git submodule init | ||
git submodule update --recursive --remote | ||
|
||
clean: | ||
rm -rf build | ||
rm -rf testext | ||
cd duckdb && make clean | ||
cd duckdb && make clean-python | ||
|
||
|
||
VCPKG_EMSDK_FLAGS=-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=$(EMSDK)/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake | ||
WASM_COMPILE_TIME_COMMON_FLAGS=-DWASM_LOADABLE_EXTENSIONS=1 -DBUILD_EXTENSIONS_ONLY=1 -DSKIP_EXTENSIONS="parquet;json" $(TOOLCHAIN_FLAGS) $(VCPKG_EMSDK_FLAGS) -DDUCKDB_CUSTOM_PLATFORM='${DUCKDB_PLATFORM}' -DDUCKDB_EXPLICIT_PLATFORM='${DUCKDB_PLATFORM}' | ||
WASM_CXX_MVP_FLAGS= | ||
WASM_CXX_EH_FLAGS=$(WASM_CXX_MVP_FLAGS) -fwasm-exceptions -DWEBDB_FAST_EXCEPTIONS=1 | ||
WASM_CXX_THREADS_FLAGS=$(WASM_COMPILE_TIME_EH_FLAGS) -DWITH_WASM_THREADS=1 -DWITH_WASM_SIMD=1 -DWITH_WASM_BULK_MEMORY=1 -pthread | ||
WASM_LINK_TIME_FLAGS=-O3 -sSIDE_MODULE=2 -sEXPORTED_FUNCTIONS="_${EXT_NAME}_version,_${EXT_NAME}_init" | ||
|
||
wasm_mvp: | ||
mkdir -p build/wasm_mvp | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_mvp -DCMAKE_CXX_FLAGS="$(WASM_CXX_MVP_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_mvp | ||
cd build/wasm_mvp/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) | ||
|
||
wasm_eh: | ||
mkdir -p build/wasm_eh | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_eh -DCMAKE_CXX_FLAGS="$(WASM_CXX_EH_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_eh | ||
cd build/wasm_eh/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) | ||
|
||
wasm_threads: | ||
mkdir -p ./build/wasm_threads | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_threads -DCMAKE_CXX_FLAGS="$(WASM_CXX_THREADS_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_threads | ||
cd build/wasm_threads/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) -sSHARED_MEMORY=1 -pthread | ||
include out-of-tree-extension.Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Config to build this extension | ||
duckdb_extension_load(quack | ||
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR} | ||
INCLUDE_PATH ${CMAKE_CURRENT_LIST_DIR}src/include | ||
TEST_PATH ${CMAKE_CURRENT_LIST_DIR}src/include | ||
LOAD_TESTS | ||
DONT_LINK | ||
) | ||
|
||
# Load more extensions in your builds by adding them here. E.g.: | ||
# duckdb_extension_load(json) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Reusable makefile for building out-of-tree extension with the DuckDB extension template | ||
# | ||
# TODO: move out of this repo | ||
# | ||
# Inputs | ||
# EXT_NAME : Upper case string describing the name of the out-of-tree extension | ||
# EXT_CONFIG : Path to the extension config file specifying how to build the extension | ||
# EXT_FLAGS : Extra CMake flags to pass to the build | ||
# EXT_RELEASE_FLAGS : Extra CMake flags to pass to the release build | ||
# EXT_DEBUG_FLAGS : Extra CMake flags to pass to the debug build | ||
|
||
.PHONY: all clean format debug release pull update wasm_mvp wasm_eh wasm_threads | ||
|
||
all: release | ||
|
||
TEST_PATH="/test/unittest" | ||
DUCKDB_PATH="/duckdb" | ||
|
||
# For non-MinGW windows the path is slightly different | ||
ifeq ($(OS),Windows_NT) | ||
ifneq ($(CXX),g++) | ||
TEST_PATH="/test/Release/unittest.exe" | ||
DUCKDB_PATH="/Release/duckdb.exe" | ||
endif | ||
endif | ||
|
||
#### OSX config | ||
OSX_BUILD_FLAG= | ||
ifneq (${OSX_BUILD_ARCH}, "") | ||
OSX_BUILD_FLAG=-DOSX_BUILD_ARCH=${OSX_BUILD_ARCH} | ||
endif | ||
|
||
#### VCPKG config | ||
VCPKG_TOOLCHAIN_PATH?= | ||
ifneq ("${VCPKG_TOOLCHAIN_PATH}", "") | ||
TOOLCHAIN_FLAGS:=${TOOLCHAIN_FLAGS} -DVCPKG_MANIFEST_DIR='${PROJ_DIR}' -DVCPKG_BUILD=1 -DCMAKE_TOOLCHAIN_FILE='${VCPKG_TOOLCHAIN_PATH}' | ||
endif | ||
ifneq ("${VCPKG_TARGET_TRIPLET}", "") | ||
TOOLCHAIN_FLAGS:=${TOOLCHAIN_FLAGS} -DVCPKG_TARGET_TRIPLET='${VCPKG_TARGET_TRIPLET}' | ||
endif | ||
|
||
#### Enable Ninja as generator | ||
ifeq ($(GEN),ninja) | ||
GENERATOR=-G "Ninja" -DFORCE_COLORED_OUTPUT=1 | ||
endif | ||
|
||
#### Configuration for this extension | ||
EXTENSION_FLAGS=-DDUCKDB_EXTENSION_CONFIGS='${EXT_CONFIG}' | ||
|
||
BUILD_FLAGS=-DEXTENSION_STATIC_BUILD=1 $(EXTENSION_FLAGS) ${EXT_FLAGS} $(OSX_BUILD_FLAG) $(TOOLCHAIN_FLAGS) -DDUCKDB_EXPLICIT_PLATFORM='${DUCKDB_PLATFORM}' | ||
|
||
debug: | ||
mkdir -p build/debug && \ | ||
cmake $(GENERATOR) $(BUILD_FLAGS) $(EXT_DEBUG_FLAGS) -DCMAKE_BUILD_TYPE=Debug -S ./duckdb/ -B build/debug && \ | ||
cmake --build build/debug --config Debug | ||
|
||
release: | ||
mkdir -p build/release && \ | ||
cmake $(GENERATOR) $(BUILD_FLAGS) $(EXT_RELEASE_FLAGS) -DCMAKE_BUILD_TYPE=Release -S ./duckdb/ -B build/release && \ | ||
cmake --build build/release --config Release | ||
|
||
# Main tests | ||
test: test_release | ||
|
||
test_release: release | ||
./build/release/$(TEST_PATH) "$(PROJ_DIR)test/*" | ||
|
||
test_debug: debug | ||
./build/debug/$(TEST_PATH) "$(PROJ_DIR)test/*" | ||
|
||
# WASM config | ||
VCPKG_EMSDK_FLAGS=-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=$(EMSDK)/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake | ||
WASM_COMPILE_TIME_COMMON_FLAGS=-DWASM_LOADABLE_EXTENSIONS=1 -DBUILD_EXTENSIONS_ONLY=1 -DSKIP_EXTENSIONS="parquet;json" $(TOOLCHAIN_FLAGS) $(VCPKG_EMSDK_FLAGS) -DDUCKDB_CUSTOM_PLATFORM='${DUCKDB_PLATFORM}' -DDUCKDB_EXPLICIT_PLATFORM='${DUCKDB_PLATFORM}' | ||
WASM_CXX_MVP_FLAGS= | ||
WASM_CXX_EH_FLAGS=$(WASM_CXX_MVP_FLAGS) -fwasm-exceptions -DWEBDB_FAST_EXCEPTIONS=1 | ||
WASM_CXX_THREADS_FLAGS=$(WASM_COMPILE_TIME_EH_FLAGS) -DWITH_WASM_THREADS=1 -DWITH_WASM_SIMD=1 -DWITH_WASM_BULK_MEMORY=1 -pthread | ||
WASM_LINK_TIME_FLAGS=-O3 -sSIDE_MODULE=2 -sEXPORTED_FUNCTIONS="_${EXT_NAME}_version,_${EXT_NAME}_init" | ||
|
||
# WASM targets | ||
wasm_mvp: | ||
mkdir -p build/wasm_mvp | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_mvp -DCMAKE_CXX_FLAGS="$(WASM_CXX_MVP_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_mvp | ||
cd build/wasm_mvp/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) | ||
|
||
wasm_eh: | ||
mkdir -p build/wasm_eh | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_eh -DCMAKE_CXX_FLAGS="$(WASM_CXX_EH_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_eh | ||
cd build/wasm_eh/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) | ||
|
||
wasm_threads: | ||
mkdir -p ./build/wasm_threads | ||
emcmake cmake $(GENERATOR) $(EXTENSION_FLAGS) $(WASM_COMPILE_TIME_COMMON_FLAGS) -Bbuild/wasm_threads -DCMAKE_CXX_FLAGS="$(WASM_CXX_THREADS_FLAGS)" -S duckdb | ||
emmake make -j8 -Cbuild/wasm_threads | ||
cd build/wasm_threads/extension/${EXT_NAME} && emcc $f -o ../../${EXT_NAME}.duckdb_extension.wasm ${EXT_NAME}.duckdb_extension.wasm.lib $(WASM_LINK_TIME_FLAGS) -sSHARED_MEMORY=1 -pthread | ||
|
||
#### Misc | ||
format: | ||
find src/ -iname *.hpp -o -iname *.cpp | xargs clang-format --sort-includes=0 -style=file -i | ||
cmake-format -i CMakeLists.txt | ||
update: | ||
git submodule update --remote --merge | ||
pull: | ||
git submodule init | ||
git submodule update --recursive --remote | ||
|
||
clean: | ||
rm -rf build | ||
rm -rf testext | ||
cd duckdb && make clean | ||
cd duckdb && make clean-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
# Testing the quack extension | ||
This directory contains all the tests for the quack extension. The `sql` directory holds tests that are written as [SQLLogicTests](https://duckdb.org/dev/sqllogictest/intro.html). DuckDB aims to have most its tests in this format as SQL statements, so for the quack extension, this should probably be the goal too. However, client specific testing is also available. | ||
This directory contains all the tests for the quack extension. The `sql` directory holds tests that are written as [SQLLogicTests](https://duckdb.org/dev/sqllogictest/intro.html). DuckDB aims to have most its tests in this format as SQL statements, so for the quack extension, this should probably be the goal too. | ||
|
||
The root makefile contains targets to build and run all of these tests. To run the SQLLogicTests: | ||
```bash | ||
make test | ||
``` | ||
|
||
To run the python tests: | ||
```sql | ||
make test_python | ||
``` | ||
|
||
For other client tests check the makefile in the root of this repository. | ||
or | ||
```bash | ||
make test_debug | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.