diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2015-08-05 15:23:15 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2015-08-05 15:23:15 -0700 |
| commit | 50f0ed918c4f5c70685752188b6a3853fc7205b9 (patch) | |
| tree | 3b157189c591f0b297271b1119050d1f87894aaa /src | |
| parent | 8e08cf4bec80b87a7a22a18086a3db5c2c0f1772 (diff) | |
| download | zig-50f0ed918c4f5c70685752188b6a3853fc7205b9.tar.gz zig-50f0ed918c4f5c70685752188b6a3853fc7205b9.zip | |
link against LLVM
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.h.in | 9 | ||||
| -rw-r--r-- | src/main.c | 5 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in new file mode 100644 index 0000000000..75757bdc43 --- /dev/null +++ b/src/config.h.in @@ -0,0 +1,9 @@ +#ifndef ZIG_CONFIG_H +#define ZIG_CONFIG_H + +#define ZIG_VERSION_MAJOR @ZIG_VERSION_MAJOR@ +#define ZIG_VERSION_MINOR @ZIG_VERSION_MINOR@ +#define ZIG_VERSION_PATCH @ZIG_VERSION_PATCH@ +#define ZIG_VERSION_STRING "@ZIG_VERSION@" + +#endif diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000000..e6173ef043 --- /dev/null +++ b/src/main.c @@ -0,0 +1,5 @@ +#include <stdio.h> + +int main(int argc, char **argv) { + return 0; +} |
