hikyuu2/docs/source/developer.rst

78 lines
2.4 KiB
ReStructuredText
Raw Normal View History

2019-02-27 23:27:11 +08:00
.. _developer:
2019-02-17 16:10:03 +08:00
C++ 开发者指南
===============
.. note::
2019-02-17 23:21:39 +08:00
为了顺利编译代码, 请勿使用从 github 直接下载源码包的方式编译。 原因是 git 上传时部分文件的换行符被置换为Linux式的换行符将导致直接下载的部分代码在Windows下无法顺利编译。
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
C++ API参考`<http://fasiondog.cn/hikyuu/cpp_ref/index.html>`_
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
C++测试工程参考:`<http://fasiondog.cn/hikyuu/test_doc/index.html>`_
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
编译前准备
2019-02-17 16:10:03 +08:00
----------------
2019-02-17 23:21:39 +08:00
1、安装C++编译器
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
- Windows 平台Visual C++ 2017 (或以上)
- Linux 平台: g++ > = 5.4.0 、 clang++ >= 3.8.0
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
2、安装构建工具 xmake
^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-02-17 16:10:03 +08:00
2023-10-10 17:02:24 +08:00
xmake >= 2.8.2,网址:`<https://github.com/xmake-io/xmake>`_
2019-02-17 16:10:03 +08:00
2023-10-10 17:02:24 +08:00
参见https://xmake.io/#/zh-cn/guide/installation `<https://xmake.io/#/zh-cn/guide/installation>`
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
3、克隆 Hikyuu 源码
^^^^^^^^^^^^^^^^^^^^^^^^
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
执行以下命令克隆 hikyuu 源码:(请勿在中文目录下克隆代码)
2019-02-17 16:10:03 +08:00
.. code-block:: shell
2023-10-10 17:02:24 +08:00
git clone https://github.com/fasiondog/hikyuu.git --recursive
2019-02-17 16:10:03 +08:00
2023-07-28 14:47:00 +08:00
4、Linux下安装依赖软件包
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Linux下需安装依赖的开发软件包。如 Ubuntu 下,执行以下命令:
.. code-block:: shell
2023-03-23 02:13:45 +08:00
sudo apt-get install -y libsqlite3-dev
MacOsx 下需要使用 brew 安装 sqlite3, hdf5, mysqlclient 的开发包(具体包名请自行查询)。
2023-07-28 14:47:00 +08:00
5、转 Visual Studio 工程
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Windows 下,习惯用 msvc 调试的,可以使用 xmake project -k vsxmake -m "debug,release" 命令生成 VS 工程。命令执行后,会在当前目录下生成如 vsxmake2022 的子目录VS工程位于其内。
在 VS 内,可以将 demo 设为启动工程,进行调试。
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
编译与安装
------------
2019-02-17 16:10:03 +08:00
2019-08-01 23:07:10 +08:00
须先安装 python click包pip install click)
2019-07-27 18:41:23 +08:00
直接在克隆的 hikyuu 目录下执行 python setup.py command , 支持的 command
2019-02-17 16:10:03 +08:00
2019-02-17 23:21:39 +08:00
- python setup.py help -- 查看帮助
2019-07-27 18:41:23 +08:00
- python setup.py build -- 执行编译
- python setup.py install -- 编译并执行安装(安装到 python 的 site-packages 目录下)
2019-02-17 23:21:39 +08:00
- python setup.py uninstall -- 删除已安装的Hikyuu
2019-08-01 23:07:10 +08:00
- python setup.py test -- 执行单元测试(可带参数 --compile=1先执行编译
2019-02-17 23:21:39 +08:00
- python setup.py clear -- 清除本地编译结果
2019-07-27 18:41:23 +08:00
- python setup.py wheel -- 生成wheel安装包
2019-02-17 16:10:03 +08:00