-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
78 lines (48 loc) · 1.99 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
zerobuild - 1.2.1
NEW: Added support for cmdflags like:
`wx-config --cxxflags --libs`
for example.
- Stefan Pietzonke <[email protected]> Fri 15 Mar 2023 07:07 +0200
zerobuild - 1.2.0
NEW: process.c cleanup to use system() call on MSYS2 build.
- Stefan Pietzonke <[email protected]> Fri 13 Oct 2023 21:00 +0200
zerobuild - 1.1.0
Added experimemntal support for OpenBSD.
- Stefan Pietzonke <[email protected]> Fri 18 May 2022 22:19 +0200
zerobuild - 1.0.4
NEW: now C++ projects can be build with "force" flag set!
NEW: build script output now uses "/bin/bash".
- Stefan Pietzonke <[email protected]> Sun 14 Aug 2022 20:38 +0200
zerobuild - 1.0.3
Added "script" flag: this creates a make script which can be run as a shell build script.
This was needed on Cygwin to build the L1VM!
Added printing newlines at program start for better printout.
- Stefan Pietzonke <[email protected]> Sun 06 Feb 2022 11:33 +0200
zerobuild - 1.0.2
Cleaned up code with -Wall compile.
Code cleanup: strlen_safe in place of strlen.
New: 'strip' flag to strip binary.
See zerobuild.txt makefile!
New: bugfixes, and updates.
New: C compiler and C++ compiler can now be set as ENV variables too:
ccompiler = $COMP
- Stefan Pietzonke <[email protected]> Sun 14 Jun 2020 00:25 +0200
zerobuild 1.0.1
Parser now accepts "," inside cflags and lflags strings.
Now a different makefile name can be used:
zerobuild foobar.txt
Now "zerobuild force" works too.
Or "zerobuild zerobuild.txt force"
New: added protos.
- Stefan Pietzonke <[email protected]> Sat 18 May 2019 21:27 +0200
zerobuild (alpha)
Parser: now global includes can be defined at the beginning of the sources list.
The whole project gets rebuild if a global include file was modified!
This is how it looks like:
------------ snip -----
# zerobuild makefile
[executable, name = zerobuild]
sources = global.h, parser.c, make.c, process.c
ccompiler = clang-3.9
------------ snip -----
- Stefan Pietzonke <[email protected]> Sun 30 Jul 2017 21:00 +0200