mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
15 lines
532 B
Plaintext
15 lines
532 B
Plaintext
|
System Utilities Interface
|
||
|
==========================
|
||
|
|
||
|
The design of this library has several key constraints aimed at shielding LLVM
|
||
|
from the vagaries of operating system differences. The goal here is to provide
|
||
|
interfaces to operating system concepts (files, memory maps, sockets, signals,
|
||
|
locking, etc) efficiently and in such a way that the remainder of LLVM is
|
||
|
completely operating system agnostic.
|
||
|
|
||
|
PLEASE READ AND COMPREHEND FULLY THE DOCUMENTATION in
|
||
|
|
||
|
llvm/docs/SystemLibrary.html
|
||
|
|
||
|
before making changes to this library.
|