-
Notifications
You must be signed in to change notification settings - Fork 460
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
[VL] update docker script in readme #4683
Conversation
Thanks for opening a pull request! Could you open an issue for this pull request on Github Issues? https://github.com/oap-project/gluten/issues Then could you also rename commit message and pull request title in the following format?
See also: |
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.
Just some trivial comments. Thanks!
#vim ~/.m2/settings.xml | ||
|
||
# the script download velox & arrow and compile all dependency library automatically | ||
# To access HDFS or S3, you need to add the parameters `--enable_hdfs=ON` and `--enable_s3=ON` | ||
./dev/buildbundle-veloxbe.sh | ||
|
||
# It's suggested to build using static link, enabled by --ENABLE_VCPKG=ON |
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.
We need to use lower case for build option: --enable_vcpkg
.
./dev/buildbundle-veloxbe.sh | ||
|
||
# It's suggested to build using static link, enabled by --ENABLE_VCPKG=ON | ||
# For developer, it's suggested to enable Debug info, by --BUILD_TYPE=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3 |
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.
--build_type
, in lower case.
|
||
# It's suggested to build using static link, enabled by --ENABLE_VCPKG=ON | ||
# For developer, it's suggested to enable Debug info, by --BUILD_TYPE=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3 | ||
./dev/buildbundle-veloxbe.sh --ENABLE_VCPKG=ON --BUILD_TYPE=RelWithDebInfo |
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.
Ditto.
# For developer, it's suggested to enable Debug info, by --BUILD_TYPE=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3 | ||
./dev/buildbundle-veloxbe.sh --ENABLE_VCPKG=ON --BUILD_TYPE=RelWithDebInfo | ||
# It's suggested to build using static link, enabled by `--enable_vcpkg=ON` | ||
# For developer, it's suggested to enable Debug info, by --buld_type=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3 |
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.
typo: --build_type=...
couple of udpates of script to build gluten in ubuntu20.04/22.04 docker.