Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build/trivalent.spec
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Requires: u2f-hidraw-policy
Requires: bubblewrap
Requires: %{chromium_name}-common%{_isa} = %{version}-%{release}

ExclusiveArch: x86_64
ExclusiveArch: x86_64 aarch64

# License: BSD-3-Clause
Provides: bundled(angle)
Expand Down Expand Up @@ -429,6 +429,10 @@ PATH="$PATH:$(pwd)/third_party/ninja"
export PATH

CHROMIUM_GN_DEFINES=''
%ifarch aarch64
CHROMIUM_GN_DEFINES+=' target_cpu="arm64"'
CHROMIUM_GN_DEFINES+=' use_v4l2_codec=true'
%endif
CHROMIUM_GN_DEFINES+=' system_libdir="%{_lib}"'
CHROMIUM_GN_DEFINES+=' is_official_build=true'
CHROMIUM_GN_DEFINES+=' is_cfi=true use_cfi_cast=true'
Expand Down
2 changes: 1 addition & 1 deletion copr_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for ((i=0; i<${#patches[@]}; i++)); do
done
cd ..

# copy hardened-chromium patches to the build dir
# copy Trivalent patches to the build dir
cd patches/
patches=(*.patch)
for ((i=0; i<${#patches[@]}; i++)); do
Expand Down