Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desmosomeorg/p5-alien-llvm
https://github.com/desmosomeorg/p5-alien-llvm
alien llvm perl
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/desmosomeorg/p5-alien-llvm
- Owner: DesmosomeOrg
- Created: 2023-02-12T20:38:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-14T09:19:11.000Z (almost 2 years ago)
- Last Synced: 2024-11-10T02:29:49.379Z (3 months ago)
- Topics: alien, llvm, perl
- Language: Perl
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Alien::LLVM - Find or build LLVM
# SYNOPSIS
Command line tool:
use Alien::LLVM;
use Env qw( @PATH );unshift @PATH, Alien::LLVM->bin_dir;
# DESCRIPTION
This distribution provides LLVM so that it can be used by other
Perl distributions that are on CPAN. It does this by first trying to
detect an existing install of LLVM on your system. If found it
will use that. If it cannot be found, the source code will be downloaded
from the internet and it will be installed in a private share location
for the use of other modules.# SEE ALSO
- [Alien](https://metacpan.org/pod/Alien)
Documentation on the Alien concept itself.
- [Alien::Base](https://metacpan.org/pod/Alien%3A%3ABase)
The base class for this Alien.
- [Alien::Build::Manual::AlienUser](https://metacpan.org/pod/Alien%3A%3ABuild%3A%3AManual%3A%3AAlienUser)
Detailed manual for users of Alien classes.