Skip to content

Commit d9faf7b

Browse files
committed
Remove gnu11 std
1 parent e3a2319 commit d9faf7b

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

ci_config.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,21 @@
5151
"arrow-cpp:tensorflow=enabled"
5252
],
5353
"alpine_packages": [
54-
"boost-dev"
54+
"boost-dev",
55+
"rapidjson"
5556
],
5657
"brew_packages": [
57-
"boost"
58+
"boost",
59+
"rapidjson"
5860
],
5961
"debian_packages": [
6062
"libboost-filesystem-dev",
61-
"libboost-system-dev"
63+
"libboost-system-dev",
64+
"rapidjson-dev"
6265
],
6366
"msys_packages": [
64-
"boost"
67+
"boost",
68+
"rapidjson"
6569
]
6670
},
6771
"atomic_queue": {

subprojects/packagefiles/arrow-cpp/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ project(
2929
version: '22.0.0',
3030
license: 'Apache-2.0',
3131
meson_version: '>=1.3.0',
32-
default_options: ['c_std=gnu11,c11', 'warning_level=2', 'cpp_std=c++17'],
32+
default_options: ['c_std=c11', 'warning_level=2', 'cpp_std=c++17'],
3333
)
3434

3535
project_args = [

0 commit comments

Comments
 (0)