Skip to content

Commit a2b0b5a

Browse files
committed
feat: adjust arm64 build args
1 parent 25c3746 commit a2b0b5a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build-linux-arm64.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,16 @@ jobs:
4848
- name: Configure CMake
4949
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
5050
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
51-
run: cmake -B ${{github.workspace}}/build -DPROJECT_ARCH=arm64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DUSE_SANDBOX=ON -DCMAKE_INSTALL_PREFIX:PATH=${{github.workspace}}/install
51+
run: |
52+
cmake \
53+
-B ${{github.workspace}}/build \
54+
-DCMAKE_CXX_FLAGS=-stdlib=libc++ \
55+
-DPROJECT_ARCH=arm64 \
56+
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
57+
-DUSE_SANDBOX=ON \
58+
-DCEFVIEW_WING_NAME=UCefViewHelper \
59+
-DCEF_SDK_VERSION="126.2.18+g3647d39+chromium-126.0.6478.183" \
60+
-DCMAKE_INSTALL_PREFIX:PATH=${{github.workspace}}/install
5261
5362
- name: Build
5463
# Build your program with the given configuration

0 commit comments

Comments
 (0)