mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 08:13:07 +00:00
init-lib creates a working static library with tests, and init-exe creates a working hello world with a `run` target. both now have test coverage with the new "cli tests" file. closes #1035
22 lines
388 B
C++
22 lines
388 B
C++
/*
|
|
* Copyright (c) 2018 Andrew Kelley
|
|
*
|
|
* This file is part of zig, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#ifndef ZIG_COMPILER_HPP
|
|
#define ZIG_COMPILER_HPP
|
|
|
|
#include "buffer.hpp"
|
|
#include "error.hpp"
|
|
|
|
Buf *get_stage1_cache_path();
|
|
Error get_compiler_id(Buf **result);
|
|
|
|
Buf *get_zig_lib_dir();
|
|
Buf *get_zig_special_dir();
|
|
Buf *get_zig_std_dir();
|
|
|
|
#endif
|