-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Building on Ubuntu is not working #10
Comments
You can download the libs I used for building here: https://drive.google.com/drive/u/1/folders/1MJXeNX7zLDJAR_vFLh0x_A4Jci6R9zwT. Your versions are probably too new.
|
Hi friend, first, thank you for your work, and can you help me? , I'm trying to building for armv6 with a raspberry pi zero, but I get this errors using your libs provide , when I building it with armv7 I have no problems. Linux raspberrypi 5.10.103+ #1530 Tue Mar 8 13:00:30 GMT 2022 armv6l The programs included with the Debian GNU/Linux system are free software; Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent |
👋🏼 Hi, thank you for these scripts! 👍🏼
On Ubuntu focal 20.04.2 LTS I am having the issues described below with
rapidxml
,config4cpp
andlibcrypto++
when trying to build thehuawei_band_tool
.Requirements
All packages required for compilation have been installed.
Here are the installed versions.
g++ 9.3.0-17ubuntu1~20.04
libcurl4-gnutls-dev 7.68.0-1ubuntu2.5
librapidxml-dev 1.13-2
libcrypto++-dev 5.6.4-9build1
libsdl2-net-dev 2.0.1+dfsg1-4
rapidxml
Typing
make install
insideHuawei_Tool/src
as described in the readme (which should point to./compile.sh
btw) results in the following error:This is due to a wrong include path for rapidxml. Changing line 34 in
tools.h
and line 26 inweb.cpp
to#include <rapidxml/rapidxml.hpp>
fixes this issue.config4cpp
The next error is because of missing header files for config4cpp.
Copying
include/config4cpp
from https://github.com/config4star/config4cpp solves this issue.crypto++
./compile.sh
(ormake install
respectively) still throws some errors concerning CryptoPP.Unfortunately, going through https://www.cryptopp.com/wiki/Std::byte did not help me much in better understanding the issue… 😸
The text was updated successfully, but these errors were encountered: