Skip to content

Commit f25c9a9

Browse files
committed
universal builds
1 parent 4bb2887 commit f25c9a9

File tree

3 files changed

+48
-34
lines changed

3 files changed

+48
-34
lines changed

CMakeLists.txt

+16-10
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ endif()
2424

2525
project(postgres_scanner C CXX)
2626

27+
option(
28+
OSX_BUILD_UNIVERSAL
29+
"Build both architectures on OSX and create a single binary containing both."
30+
FALSE)
31+
if(OSX_BUILD_UNIVERSAL)
32+
if(NOT APPLE)
33+
error("This only makes sense on OSX")
34+
endif()
35+
set(CMAKE_OSX_ARCHITECTURES
36+
"x86_64;arm64"
37+
CACHE STRING "Build architectures for Mac OS X" FORCE)
38+
endif()
39+
2740
find_package(Threads REQUIRED)
2841
add_subdirectory(postgres)
2942

@@ -32,8 +45,7 @@ if(WIN32 AND NOT MSVC)
3245
return()
3346
endif()
3447

35-
include_directories(duckdb/src/include)
36-
include_directories(duckdb/third_party/fmt/include)
48+
include_directories(${DUCKDB_INCLUDE_FOLDER})
3749

3850
include_directories(postgres/postgres/src/include)
3951
include_directories(postgres/postgres/src/interfaces/libpq)
@@ -46,16 +58,10 @@ endif()
4658

4759
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
4860
add_compile_options(-Wall -pedantic -fsanitize=address -fno-sanitize=vptr)
49-
link_directories(duckdb/build/debug/src)
50-
else()
51-
if(WIN32)
52-
link_directories(duckdb/build/release/src/Release)
53-
else()
54-
link_directories(duckdb/build/release/src)
55-
56-
endif()
5761
endif()
5862

63+
link_directories(${DUCKDB_LIBRARY_FOLDER})
64+
5965
add_library(postgres_scanner SHARED postgres_scanner.cpp)
6066
set_target_properties(postgres_scanner PROPERTIES PREFIX "")
6167
target_link_libraries(postgres_scanner duckdb duckdb_libpq Threads::Threads)

Makefile

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
.PHONY: all clean format debug release duckdb_debug duckdb_release update
22
all: release
33
GEN=ninja
4+
5+
OSX_BUILD_UNIVERSAL_FLAG=
6+
ifeq (${OSX_BUILD_UNIVERSAL}, 1)
7+
OSX_BUILD_UNIVERSAL_FLAG=-DOSX_BUILD_UNIVERSAL=1
8+
endif
9+
10+
411
clean:
512
rm -rf build
613
rm -rf duckdb/build
@@ -20,13 +27,13 @@ duckdb_release:
2027
debug: postgres/postgres duckdb_debug
2128
mkdir -p build/debug && \
2229
cd build/debug && \
23-
cmake -DCMAKE_BUILD_TYPE=Debug ../.. && \
30+
cmake -DCMAKE_BUILD_TYPE=Debug -DDUCKDB_INCLUDE_FOLDER=duckdb/src/include -DDUCKDB_LIBRARY_FOLDER=duckdb/build/debug/src ${OSX_BUILD_UNIVERSAL_FLAG} ../.. && \
2431
cmake --build .
2532

2633
release: postgres/postgres duckdb_release
2734
mkdir -p build/release && \
2835
cd build/release && \
29-
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ../.. && \
36+
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDUCKDB_INCLUDE_FOLDER=duckdb/src/include -DDUCKDB_LIBRARY_FOLDER=duckdb/build/release/src ${OSX_BUILD_UNIVERSAL_FLAG} ../.. && \
3037
cmake --build .
3138

3239
test: release

postgres/configure

+23-22
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,26 @@ rm -rf postgres
33
mkdir postgres
44
curl -s -L https://github.com/postgres/postgres/archive/refs/tags/REL_14_2.tar.gz | tar xz --strip-components 1 -C postgres
55

6-
(cd postgres && ./configure \
7-
--without-llvm \
8-
--without-icu \
9-
--without-tcl \
10-
--without-perl \
11-
--without-python \
12-
--without-gssapi \
13-
--without-pam \
14-
--without-bsd-auth \
15-
--without-ldap \
16-
--without-bonjour \
17-
--without-selinux \
18-
--without-systemd \
19-
--without-readline \
20-
--without-libxml \
21-
--without-libxslt \
22-
--without-zlib \
23-
--without-lz4 \
24-
--without-openssl > /dev/null)
25-
26-
# TODO windows
27-
# (cd postgres/src/tools/msvc/ && perl mkvcbuild.pl)
6+
if [ "$OS" = "Windows_NT" ]; then
7+
(cd postgres/src/tools/msvc/ && perl mkvcbuild.pl)
8+
else
9+
(cd postgres && ./configure \
10+
--without-llvm \
11+
--without-icu \
12+
--without-tcl \
13+
--without-perl \
14+
--without-python \
15+
--without-gssapi \
16+
--without-pam \
17+
--without-bsd-auth \
18+
--without-ldap \
19+
--without-bonjour \
20+
--without-selinux \
21+
--without-systemd \
22+
--without-readline \
23+
--without-libxml \
24+
--without-libxslt \
25+
--without-zlib \
26+
--without-lz4 \
27+
--without-openssl > /dev/null)
28+
fi

0 commit comments

Comments
 (0)