mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00

This adds functionality to load plugins such as the AFL llvm-mode plugin: https://github.com/mirrorer/afl/blob/master/llvm_mode/afl-llvm-pass.so.cc Note that such plugins developed for Clang should also work for LDC !
15 lines
439 B
C++
15 lines
439 B
C++
//===-- driver/plugins.h ---------------------------------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_DRIVER_PLUGINS_H
|
||
#define LDC_DRIVER_PLUGINS_H
|
||
|
||
void loadAllPlugins();
|
||
|
||
#endif // LDC_DRIVER_PLUGINS_H
|