Metadata-Version: 2.1
Name: llvm-installer
Version: 1.1.5
Summary: Allows installing pre-built LLVM packages for various operating systems
Home-page: https://github.com/yugabyte/llvm-installer
Author: Mikhail Bautin
Author-email: mbautin@users.noreply.github.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# llvm-installer

https://pypi.org/project/llvm-installer/

Helps installing pre-built LLVM packages for various operating systems.

## Usage as module

Getting LLVM installation URL for a particular OS/version/architecture.

```python
from llvm_installer import LlvmInstaller
import sys_detection

local_sys_conf = sys_detection.local_sys_conf()
llvm_installer = LlvmInstaller(
    short_os_name_and_version=local_sys_conf.short_os_name_and_version(),
    architecture=local_sys_conf.architecture)
llvm_url = llvm_installer.get_llvm_url(major_llvm_version=major_llvm_version)
```

## Command-line usage

```bash
python3 -m llvm_installer
```


