mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 08:59:00 +08:00
8c228c8eca
In an internal version of Visual Studio, `arrow`, `concurrencpp` and `qtwebengine` install failed with following error: ``` arrow: \cpp\src\arrow/json/object_writer.h(39): error C2039: 'string': is not a member of 'std' concurrencpp: \include\concurrencpp/threads/thread.h(23): error C2039: 'string': is not a member of 'std' qtwebengine: \src\3rdparty\gn\src\gn\escape.h(77): error C2039: 'string': is not a member of 'std' ``` This issue caused by the STL PR: https://github.com/microsoft/STL/pull/4633, and according to Stephan's suggestion, the affected files need to include the `Standard <string> header`. I have submitted an issue on the qt upstream: https://bugreports.qt.io/browse/QTBUG-126156
143 lines
2.7 KiB
JSON
143 lines
2.7 KiB
JSON
{
|
|
"name": "arrow",
|
|
"version": "16.1.0",
|
|
"port-version": 1,
|
|
"description": "Cross-language development platform for in-memory analytics",
|
|
"homepage": "https://arrow.apache.org",
|
|
"license": "Apache-2.0",
|
|
"supports": "x64 | (arm64 & !windows)",
|
|
"dependencies": [
|
|
"boost-filesystem",
|
|
"boost-multiprecision",
|
|
"boost-system",
|
|
"brotli",
|
|
"bzip2",
|
|
"gflags",
|
|
"lz4",
|
|
"openssl",
|
|
"re2",
|
|
"snappy",
|
|
"thrift",
|
|
"utf8proc",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"xsimd",
|
|
"zlib",
|
|
"zstd"
|
|
],
|
|
"default-features": [
|
|
"csv",
|
|
"filesystem",
|
|
"json",
|
|
"parquet"
|
|
],
|
|
"features": {
|
|
"acero": {
|
|
"description": "Acero support"
|
|
},
|
|
"compute": {
|
|
"description": "Build all computational kernel functions"
|
|
},
|
|
"csv": {
|
|
"description": "CSV support"
|
|
},
|
|
"cuda": {
|
|
"description": "cuda support",
|
|
"dependencies": [
|
|
"cuda"
|
|
]
|
|
},
|
|
"dataset": {
|
|
"description": "Dataset support"
|
|
},
|
|
"example": {
|
|
"description": "Install the minimal example (source code)"
|
|
},
|
|
"filesystem": {
|
|
"description": "Filesystem support"
|
|
},
|
|
"flight": {
|
|
"description": "Arrow Flight RPC support",
|
|
"dependencies": [
|
|
"abseil",
|
|
"c-ares",
|
|
"grpc",
|
|
"protobuf"
|
|
]
|
|
},
|
|
"flightsql": {
|
|
"description": "FlightSQL support",
|
|
"dependencies": [
|
|
{
|
|
"name": "arrow",
|
|
"default-features": false,
|
|
"features": [
|
|
"flight"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"gcs": {
|
|
"description": "GCS support",
|
|
"dependencies": [
|
|
{
|
|
"name": "google-cloud-cpp",
|
|
"default-features": false,
|
|
"features": [
|
|
"storage"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"jemalloc": {
|
|
"description": "jemalloc allocator",
|
|
"supports": "!windows"
|
|
},
|
|
"json": {
|
|
"description": "JSON support",
|
|
"dependencies": [
|
|
"rapidjson"
|
|
]
|
|
},
|
|
"mimalloc": {
|
|
"description": "mimalloc allocator",
|
|
"supports": "windows"
|
|
},
|
|
"orc": {
|
|
"description": "ORC support",
|
|
"dependencies": [
|
|
"orc"
|
|
]
|
|
},
|
|
"parquet": {
|
|
"description": "Parquet support",
|
|
"dependencies": [
|
|
"rapidjson"
|
|
]
|
|
},
|
|
"s3": {
|
|
"description": "S3 support",
|
|
"dependencies": [
|
|
{
|
|
"name": "aws-sdk-cpp",
|
|
"default-features": false,
|
|
"features": [
|
|
"cognito-identity",
|
|
"config",
|
|
"identity-management",
|
|
"s3",
|
|
"sts",
|
|
"transfer"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|