aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_win.bat
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2019-12-30 19:06:15 -0500
committerCalvin Rose <calsrose@gmail.com>2019-12-30 19:06:15 -0500
commit9dd152dc289e6961e4295a7fd7203cd342ae5211 (patch)
tree2ef27631d23be1ea021f63480d037caec69a43c6 /build_win.bat
parentRemove all feature test macros from janet.h (diff)
Add features.h for feature test macros.
Because we use an amalgated build, feature test macros should be set in a single file that is included before any other headers, and is placed at the top of the amalgamated build.
Diffstat (limited to 'build_win.bat')
-rw-r--r--build_win.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_win.bat b/build_win.bat
index 792c3308..aca1dbbe 100644
--- a/build_win.bat
+++ b/build_win.bat
@@ -93,7 +93,7 @@ set "amalg_files="
for %%f in (src\core\*.c) do (
set "amalg_files=!amalg_files! %%f"
)
-janet.exe tools\amalg.janet src\core\util.h src\core\state.h src\core\gc.h src\core\vector.h src\core\fiber.h src\core\regalloc.h src\core\compile.h src\core\emit.h src\core\symcache.h %amalg_files% build\core_image.c > build\janet.c
+janet.exe tools\amalg.janet src\core\features.h src\core\util.h src\core\state.h src\core\gc.h src\core\vector.h src\core\fiber.h src\core\regalloc.h src\core\compile.h src\core\emit.h src\core\symcache.h %amalg_files% build\core_image.c > build\janet.c
janet.exe tools\removecr.janet build\janet.c
@rem Gen shell.c