在 Linux 上构建 Mailcore2
Posted
技术标签:
【中文标题】在 Linux 上构建 Mailcore2【英文标题】:Building Mailcore2 on linux 【发布时间】:2020-10-20 00:02:03 【问题描述】:我正在尝试在 linux (Ubuntu 18.04) 上构建 mailcore2 库,但遇到了困难。 (大多数情况下)按照他们的回购说明:https://github.com/MailCore/mailcore2/blob/master/build-linux/README.md
首先我安装依赖项(一切正常):
sudo apt-get install libctemplate-dev libicu-dev libsasl2-dev libtidy-dev \
uuid-dev libxml2-dev libglib2.0-dev autoconf automake libtool cmake
然后它指示如何构建 libetpan,但我使用的是 libtepan 存储库中的更新说明:https://github.com/dinhviethoa/libetpan:
git clone https://github.com/dinhviethoa/libetpan
cd libetpan
./autogen.sh
make
sudo make install
最后我尝试构建 MailCore:
git clone https://github.com/MailCore/mailcore2
cd mailcore2
mkdir build
cd build
cmake ..
make
但是无论我使用什么提交,我总是得到以下错误:
In file included from /home/<USER>/mailcore2/src/core/basetypes/MCString.h:7:0,
from /home/<USER>/mailcore2/src/core/basetypes/MCData.cpp:24:
/home/<USER>/mailcore2/build/src/include/MailCore/MCICUTypes.h:16:25: error: conflicting declaration ‘typedef short unsigned int UChar’
typedef __CHAR16_TYPE__ UChar;
^~~~~
In file included from /usr/include/unicode/utypes.h:38:0,
from /usr/include/unicode/ucsdet.h:24,
from /home/<USER>/mailcore2/src/core/basetypes/MCData.cpp:15:
/usr/include/unicode/umachine.h:347:22: note: previous declaration as ‘typedef char16_t UChar’
typedef char16_t UChar;
^~~~~
src/CMakeFiles/MailCore.dir/build.make:182: recipe for target 'src/CMakeFiles/MailCore.dir/core/basetypes/MCData.cpp.o' failed
make[2]: *** [src/CMakeFiles/MailCore.dir/core/basetypes/MCData.cpp.o] Error 1
CMakeFiles/Makefile2:85: recipe for target 'src/CMakeFiles/MailCore.dir/all' failed
make[1]: *** [src/CMakeFiles/MailCore.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
我在 ios(通过 CocoaPods)上使用它已经有一段时间了,但我想将我的电子邮件功能转移到服务器端。我在 Github 上打开了一个 issue,但还没有吸引力。
【问题讨论】:
【参考方案1】:在/home/<USER>/mailcore2/build/src/include/MailCore/MCICUTypes.h
替换:
typedef __CHAR16_TYPE__ UChar;
与:
typedef char16_t UChar;
然后运行:
make clean
make
【讨论】:
我不懂 C++,所以我有点迷茫,但是我该如何在源代码中解决这个问题?似乎该头文件仅在第一次尝试构建后才存在。 或者更确切地说,在运行 cmake 之后 嗯,现在我不断收到以下信息:“/usr/bin/ld: 找不到 -licule” 我检查并确定已安装 libicu-dev。 (这是在干净的 Ubuntu 18.04 虚拟机上,顺便说一句。)以上是关于在 Linux 上构建 Mailcore2的主要内容,如果未能解决你的问题,请参考以下文章