Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!610
build: used to look for incorrect library file on aarch64
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
build: used to look for incorrect library file on aarch64
fix/build-on-aarch64
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Georgy Moshkin
requested to merge
fix/build-on-aarch64
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
3ff98fcc
1 commit,
1 year ago
1 file
+
5
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
build.rs
+
5
−
1
Options
@@ -285,7 +285,11 @@ fn build_tarantool(build_root: &Path) {
// duplicate symbols which is not allowed (by default) when linking with
// via -l... option
let
lib_dir
=
format!
(
"{tarantool_build}/third_party/libunwind/src/.libs"
);
rustc
::
link_arg
(
format!
(
"{lib_dir}/libunwind-x86_64.a"
));
if
cfg!
(
target_arch
=
"x86_64"
)
{
rustc
::
link_arg
(
format!
(
"{lib_dir}/libunwind-x86_64.a"
));
}
else
if
cfg!
(
target_arch
=
"aarch64"
)
{
rustc
::
link_arg
(
format!
(
"{lib_dir}/libunwind-aarch64.a"
));
}
rustc
::
link_arg
(
format!
(
"{lib_dir}/libunwind.a"
));
}
Loading