DStep is a tool for automatically generating D bindings for C and Objective-C libraries. This is implemented by processing C or Objective-C header files and output D modules. DStep uses the Clang compiler as a library (libclang) to process the header files.
For the latest release see: releases/latest.
Pre-compiled binaries are available for macOS and Linux as 64 bit binaries and Windows as 32 and 64 bit binaries. The Linux binaries are completely statically linked and should work on all distros. The macOS binaries are statically linked against libclang requires no other dependencies than the system libraries. They should work on macOS Mavericks (10.9) and later. The Windows binaries require to install libclang. See the releases section.
Alternatively install via Dub
The source code is available under the Boost Software License 1.0
- libclang - http://clang.llvm.org - 7.0.0 or 8.0.0. The idea is that the two most recent versions of libclang are supported.
- A D compiler - The latest version of DMD or LDC
- Dub http://code.dlang.org/download (also shipped with the compilers)
-
Install all requirements, see above
-
Clone the repository by running:
$ git clone https://github.com/jacob-carlborg/dstep
-
Run
dub build
A configuration script will try to automatically locate libclang by looking
through a couple of default search paths. If libclang is not found in any of the
default paths, please manually invoke the configuration script and specify the
path to where libclang is installed using the --llvm-path
flag.
$ ./configure --llvm-path /usr/lib/llvm-4.0/lib
- LLVM - http://llvm.org/releases/download.html - pre-built binaries for Windows. Has to be installed at the default location
- DMD - http://dlang.org/download.html - 2.071.0 or later
- Dub - http://code.dlang.org/download
- Visual Studio - for example Visual Studio Community
-
Install all requirements, see above
-
Clone the repository by running:
$ git clone git://github.com/jacob-carlborg/dstep.git
-
Run
dub build --arch=x86_mscoff --build=release
to build 32-bit version -
Run
dub build --arch=x86_64 --build=release
to build 64-bit version
Building 32-bit version requires a 32-bit variant of the Visual Studio toolchain
to be present in PATH
. The same for 64-bit. Remember to specify
--arch=x86_mscoff
when building 32-bit version. The architecture specification
is mandatory as with the default architecture or --arch=x86
dub will try to
use unsupported OPTLINK
linker. OPTLINK
linker requires unsupported version
of libclang binaries. Remember to install LLVM to its default installation path
and to add its binaries to the PATH
environmental variable (otherwise you may
need to change dub.json
). When the program compiles under Windows but crashes
at start, make sure an appropriate version of libclang.dll
is available for
DStep (you can validate it easily by copying dll to the directory with DStep).
Here
you can find more information on the topic.
$ dstep Foo.h -o Foo.d
For translating Objective-C headers add the -ObjC
flag.
$ dstep Foo.h -o Foo.d -ObjC
For translating multiple files at once, simply pass all the files to dstep.
In this case though, -o
(if given) would point to output directory name.
The directory will be created if it doesn't exist.
$ dstep Foo1.h Foo2.h Foo3.h .... FooN.h -o ./outputDirectory/
Use -h
for usage information. Any flags recognized by Clang can be used.
-
Supports translating some of the preprocessor, like:
#define
for simple constants, function like macros and the token concatenation operator (##
) -
Doesn't translate
#include
toimport
. Imports for a few standard C headers are added automatically -
Doesn't translate C++ at all
-
Umbrella headers. Some headers just serve to include other headers. If these other headers contain some form of protection, like
#error
, to be included directly this can cause problems for DStep -
Some headers are designed to always be included together with other header files. These headers may very well use symbols from other header files without including them itself. Since DStep is designed to convert header files one-by-one this doesn't work. There are two workarounds for this:
- Add
#include
-directives for the header files the header file is actually using - Use the
-include <file>
flag available in Clang to indicate the given<file>
should be processed before the file that should be translated. DStep accepts all flags Clang accepts
- Add