-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
Rebuild for libarrow 10.0.1 #58
Changes from all commits
a9ee2d4
d453742
8c3167e
e70f1fc
190c8d3
fed9e16
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
@echo on | ||
|
||
bash %RECIPE_DIR%/build_win.sh | ||
IF %ERRORLEVEL% NEQ 0 exit 1 | ||
|
||
cp %RECIPE_DIR%/configure.win r | ||
IF %ERRORLEVEL% NEQ 0 exit 1 | ||
|
||
cp %RECIPE_DIR%/install.libs.R r/src | ||
IF %ERRORLEVEL% NEQ 0 exit 1 | ||
|
||
set "MAKEFLAGS=-j%CPU_COUNT%" | ||
"%R%" CMD INSTALL --build r | ||
IF %ERRORLEVEL% NEQ 0 exit 1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
export DISABLE_AUTOBREW=1 | ||
|
||
# shellcheck disable=SC2086 | ||
# arrow uses C++17 | ||
export ARROW_R_CXXFLAGS="${ARROW_R_CXXFLAGS} -std=c++17" | ||
|
||
if [[ "${target_platform}" == osx-* ]]; then | ||
# See https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk | ||
export ARROW_R_CXXFLAGS="${ARROW_R_CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" | ||
fi | ||
|
||
# ${R_ARGS} necessary to support cross-compilation | ||
${R} CMD INSTALL --build r/. ${R_ARGS} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is necessary for cross-compilation to work, apparently