1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
vimr/third-party
Tae Won Ha d0d244b9e9 Disable pcre-jit for now
No JIT support for arm64 for the time being
2020-11-21 10:37:23 +01:00
..
deps Disable pcre-jit for now 2020-11-21 10:37:23 +01:00
utils Refactor build scripts 2020-08-21 08:59:40 +02:00
vimr-deps Update deps 2020-11-14 17:27:20 +01:00
__init__.py Refactor build scripts 2020-08-21 08:59:40 +02:00
.gitignore Adapt build deps to build universal libs 2020-09-06 11:28:00 +02:00
.python-version Refactor build scripts 2020-08-21 08:59:40 +02:00
build.py Make deps compilation on x86 possible 2020-11-15 09:24:18 +01:00
builder.py Make deps compilation on x86 possible 2020-11-15 09:24:18 +01:00
config.py Adapt build deps to build universal libs 2020-09-06 11:28:00 +02:00
README.md Move files around 2020-08-26 08:35:20 +02:00
requirements.txt Refactor build scripts 2020-08-21 08:59:40 +02:00
setup.py Adapt build deps to build universal libs 2020-09-06 11:28:00 +02:00

How to use

  • cd into ${PROJECT_ROOT}/third-party, this directory.
  • Install pyenv and pyenv-virtuelenv.
  • Install Python 3.8.x using pyenv.
  • Create a virtualenv with the name com.qvacua.VimR.third-party.
  • Ensure that you're running the Python in the virtualenv by
    $ pyenv which python
    /${HOME}/.pyenv/versions/com.qvacua.VimR.third-party/bin/python
    
  • Install the requirements
    $ pip install -r requirements.txt
    
  • Do the following
    $ python setup.py develop
    
  • Run build.py with, for example, the following arguments
    $ python build.py --arm64-deployment-target=11.00 --x86_64-deployment-target=10.13 \
                      --xz-version 5.2.4 --pcre-version 8.43 --ag-version 2.2.0
    

Built artifacts

The resulting artifacts are structured as follows

third-party
    vimr-deps
        lib
            liba.a
            libb.a
            ...
        include
            a.h
            b.h
            ...
    liba
        include
            a.h
            ...
    libb
        include
            b.h
            ...

IntelliJ settings

  • Open /third-party, this directory.
  • Add the virtualenv com.qvacua.VimR.third-party as Python SDK.
  • Set the project SDK to the virtualenv.
  • Set the content root to Sources
  • Optional: Set all install paths, i.e. vimr-deps and lib*/, to Excluded.