Skip to content

Commit

Permalink
Fix *.obj aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcboeker committed Dec 23, 2023
1 parent 0af00ab commit 45214df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ deps.windows.amd64:
-DBUILD_FTS=1 \
-DCMAKE_BUILD_TYPE=Release -B build && \
cd build && \
MAKEFLAGS=-j2 cmake --build . --config Release && \
MAKEFLAGS=-j4 cmake --build . --config Release && \
cd .. && \
mkdir -p lib && \
find ./build -name '*.obj' | xargs cp {} -t ./lib && \
for f in `find ./build -name '*.obj'`; do cp $$f lib; done && \
cd lib && \
gcc-ar rvs libduckdb.a *.obj
mv libduckdb.a ../../deps/windows_amd64/libduckdb.a

0 comments on commit 45214df

Please sign in to comment.