openharmony 交叉编译openjdk报错
openjdk17,ubuntu20.04,OHOS (dev) clang version 15.0.4
configure 命令为
./configure --openjdk-target=aarch64-linux --with-toolchain-type=clang --with-debug-level=slowdebug
错误信息如下:
checking for aarch64-linux-ld... [not found]
checking for ld... /usr/bin/ld
configure: Using clang linker version 2.38 [GNU ld (GNU Binutils for Ubuntu) 2.38]
configure: WARNING: Ignoring value of AR from the environment. Use command line variables instead.
checking for aarch64-linux-ar... [not found]
checking for ar... /usr/bin/ar
configure: WARNING: Ignoring value of STRIP from the environment. Use command line variables instead.
checking for aarch64-linux-strip... [not found]
checking for strip... /usr/bin/strip
configure: WARNING: Ignoring value of NM from the environment. Use command line variables instead.
checking for aarch64-linux-nm... [not found]
checking for nm... /usr/bin/nm
configure: WARNING: Ignoring value of OBJCOPY from the environment. Use command line variables instead.
checking for aarch64-linux-gobjcopy... [not found]
checking for gobjcopy... [not found]
checking for aarch64-linux-objcopy... [not found]
checking for objcopy... /usr/bin/objcopy
configure: WARNING: Ignoring value of OBJDUMP from the environment. Use command line variables instead.
checking for aarch64-linux-gobjdump... [not found]
checking for gobjdump... [not found]
checking for aarch64-linux-objdump... [not found]
checking for objdump... /usr/bin/objdump
checking for aarch64-linux-c++filt... [not found]
checking for c++filt... /usr/bin/c++filt
checking for cc... /usr/bin/cc
checking for CC... [not found]
checking for g++... /usr/bin/g++
checking for nm... /usr/bin/nm
checking for ar... /usr/bin/ar
checking for objcopy... /usr/bin/objcopy
checking for strip... /usr/bin/strip
configure: The BuildC compiler (located as /usr/bin/cc) does not seem to be the required clang compiler.
configure: The result from running with --version was: "cc (Ubuntu 11.2.0-19ubuntu1) 11.2.0
Copyright (C) 2021 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."
configure: error: A clang compiler is required. Try setting --with-tools-dir.
configure exiting with result code 1
请问这是什么问题,有人做过oh平台上的jdk编译吗?
openharmony
openjdk
编译
赞
收藏 0
回答 1
待解决
相关问题
用Openharmony的交叉编译器,编译helloworld程序
4299浏览 • 0回复 待解决
使用openharmony鸿蒙编译工具链交叉编译readline问题
7250浏览 • 1回复 待解决
HarmonyOS 怎么交叉编译curl、openssl库?
54浏览 • 1回复 待解决
OpenHarmony 编译原生设置settings报错
2897浏览 • 0回复 待解决
OpenHarmony-v2.2-Beta2 交叉编译自己的程序,运行失败。
7015浏览 • 2回复 待解决
Openharmony 编译 openssl 依赖 icu库报错
2380浏览 • 0回复 待解决
openharmony源码编译报错importerror:cannot import name
8564浏览 • 1回复 已解决
交叉编译环境配置问题
45浏览 • 1回复 待解决
OpenHarmony-v4.0-Beta1 编译报错,求助
4750浏览 • 3回复 待解决
NDK开发是否有提供交叉编译工具
1710浏览 • 1回复 待解决
OpenHarmony3.1官方demo编译报错,device_name无法识别的符号
6610浏览 • 4回复 待解决
如何对第三方程序进行交叉编译,才能运行在OpenHarmony2 标准版上
8778浏览 • 1回复 待解决
OpenHarmony dcts无法编译通过
3342浏览 • 0回复 待解决
openHarmony2.0 hb编译问题
10848浏览 • 5回复 待解决
openharmony 新建third_party编译不到
5428浏览 • 1回复 待解决
编译报错没有堆栈信息
798浏览 • 1回复 待解决
OpenHarmony-2.2-Beta2 编译失败,求助
8626浏览 • 1回复 已解决
openharmony编译时怎么修改current_toolchain
1744浏览 • 0回复 待解决
openharmony编译安装hb前遇到这问题
7374浏览 • 1回复 待解决
编译报错Found exception如下
1138浏览 • 1回复 待解决
求问下HarmonyOS平台的交叉编译工具链在哪呢,有编译第三方库的诉求?
46浏览 • 1回复 待解决
初次安装DevEco Studio编译报错
7754浏览 • 1回复 待解决
OpenHarmony 1.1.0 LTS源码使用repo下载,报错
12728浏览 • 1回复 待解决
从你提供的错误信息来看,主要有以下几个问题:
交叉编译工具链中的某些工具(如 aarch64-linux-ld、aarch64-linux-ar 等)未找到。
配置脚本找到了 GCC 编译器,但找不到 Clang 编译器。
为了解决这些问题,可以按照以下步骤进行操作:
1. 安装并设置交叉编译工具链
确保安装了合适的 AArch64 交叉编译工具链。可以通过以下命令安装:
2. 安装并设置 Clang 编译器
确保安装了 Clang 编译器,并将其路径添加到 PATH 环境变量中:
3. 设置环境变量
在运行 configure 脚本之前,确保设置好所有必要的环境变量。例如:
4. 运行 configure 脚本
运行 configure 脚本时,使用参数指定 Clang 编译器路径和其他相关设置:
示例配置
假设 Clang 编译器位于 /usr/bin,可以使用以下命令:
验证环境配置
在运行 configure 前,可以通过以下命令验证是否正确配置了环境变量:
如果一切正常,重新运行 configure,它应该能够找到所需的工具和编译器。