mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 02:45:25 +03:00
16 lines
443 B
C++
16 lines
443 B
C++
//===-- driver/archiver.h - Creating static libraries -----------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#pragma once
|
||
|
||
/**
|
||
* Create a static library from object files.
|
||
* @return 0 on success.
|
||
*/
|
||
int createStaticLibrary();
|