Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
045d2113
Commit
045d2113
authored
Jun 15, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Disable native import libraries on ARM64.
parent
56fe0408
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
configure
configure
+6
-5
configure.ac
configure.ac
+6
-5
No files found.
configure
View file @
045d2113
...
@@ -11712,12 +11712,12 @@ fi }
...
@@ -11712,12 +11712,12 @@ fi }
LDFLAGS
=
$saved_LDFLAGS
LDFLAGS
=
$saved_LDFLAGS
done
done
if
test
$HOST_ARCH
=
aarch64
-a
"x
$PE_ARCHS
"
=
x
if
test
$HOST_ARCH
=
aarch64
then
then
as_fn_error
$?
"PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw."
"
$LINENO
"
5
test
"x
$PE_ARCHS
"
!=
x
||
as_fn_error
$?
"PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw."
"
$LINENO
"
5
fi
DLLEXT
=
""
else
if
test
"x
$PE_ARCHS
"
=
"x"
if
test
"x
$PE_ARCHS
"
=
"x"
then
:
then
:
case
"x
$with_mingw
"
in
case
"x
$with_mingw
"
in
x
)
as_fn_append wine_notices
"|MinGW compiler not found, cross-compiling PE files won't be supported."
;;
x
)
as_fn_append wine_notices
"|MinGW compiler not found, cross-compiling PE files won't be supported."
;;
...
@@ -11727,6 +11727,7 @@ This is an error since --with-mingw was requested." "$LINENO" 5 ;;
...
@@ -11727,6 +11727,7 @@ This is an error since --with-mingw was requested." "$LINENO" 5 ;;
esac
esac
fi
fi
fi
if
test
"x
$with_system_dllpath
"
!=
"x"
-a
-n
"
$PE_ARCHS
"
if
test
"x
$with_system_dllpath
"
!=
"x"
-a
-n
"
$PE_ARCHS
"
...
...
configure.ac
View file @
045d2113
...
@@ -994,13 +994,14 @@ do
...
@@ -994,13 +994,14 @@ do
LDFLAGS=$saved_LDFLAGS
LDFLAGS=$saved_LDFLAGS
done
done
if test $HOST_ARCH = aarch64
-a "x$PE_ARCHS" = x
if test $HOST_ARCH = aarch64
then
then
AC_MSG_ERROR([PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw.])
test "x$PE_ARCHS" != x ||
AC_MSG_ERROR([PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw.])
fi
DLLEXT=""
else
WINE_NOTICE_WITH(mingw,[test "x$PE_ARCHS" = "x"],
WINE_NOTICE_WITH(mingw,[test "x$PE_ARCHS" = "x"],
[MinGW compiler not found, cross-compiling PE files won't be supported.])
[MinGW compiler not found, cross-compiling PE files won't be supported.])
fi
dnl **** External libraries ****
dnl **** External libraries ****
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment