BestAns

路漫漫其修远兮,吾将上下而求索

在 Visual Studio 2022 下面配置 ARM64 版本的 EasyX(2025-1-30 更新) 铜牌收录

前言

EasyX 默认只提供了针对 x86 和 x64 的库文件,随着 Windows for ARM 设备的增多,有些同学可能会需要在 ARM 设备上使用 EasyX。本文提供了将 EasyX 适配到 ARM64 上的库文件。

平时我工作忙,有问题直接在后面留言,我会尽力修改。

库文件下载

点击这里下载 easyx4arm64_20240601

支持的 VS 版本

VS2022,仅支持 ARM64 版本。

文件列表

include <dir>	头文件
lib <dir>		库文件

安装方法

将 include 文件夹下的头文件和 lib 文件夹下的库文件,分别拷贝到 VS 的头文件和库文件文件夹中,即可正常编译。

评论 (1) -

  • 希望能够支持下msys2的编译器,我的编译器报错了,我感觉是不支持
    C:\Users\Time>gcc --version
    gcc (Rev3, Built by MSYS2 project) 13.2.0
    Copyright (C) 2023 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


    C:\Users\Time>g++ --version
    g++ (Rev3, Built by MSYS2 project) 13.2.0
    Copyright (C) 2023 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


    C:\Users\Time>gdb --version
    GNU gdb (GDB) 14.1
    Copyright (C) 2023 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.

添加评论