Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Cross compile and strip under FreeBSD | 296bd56c1347afb7a20337e02574f9196b48317a | lep | 2018-07-22 11:55:29 |
Replace strncat with str_append. | ad968e040f315ed3cf6580e46587342897839529 | lep | 2018-03-21 13:53:11 |
Do not report arrays as uninitialized when the index is missing. | 72e93bd234743a438fb0a5c105514bf732c22b89 | lep | 2017-12-20 14:59:10 |
Better error messages. | ad8342582ac3617280f471d889b1766be272858b | lep | 2017-11-15 17:52:08 |
Handle wrong shadowing. | 0500a60ef11f39c4f33044e26c29798f6d8445b5 | lep | 2017-02-19 14:37:21 |
Added checks for natives which behave bad in a globals block. | 3e6ac270dda9ad695723d3bc2aac4d69a2fdf87a | lep | 2017-02-19 10:57:33 |
Update readme.md | 2c9177dd5482ed8c4c1464a4ade37c301205fe6b | lep | 2017-02-01 17:42:49 |
Public git release. | 2da78f3665ac4f53f5833c6a48ebbeaabea0cd49 | lep | 2017-02-01 16:42:21 |
Better ifdef-handling for aligned malloc. | d95ebafa7204e49d84a9fed8cdeb01713dd0bc82 | lep | 2017-02-01 16:41:07 |
Makefile changes. | 0458bb26764aad1caec71ccf721e84a28c699ee0 | lep | 2017-02-01 15:48:25 |
Can now compile on freebsd and linux from one branch. | 0772c4bd17dcfc389ca0e887b4bbceda8e46fa8e | lep | 2017-01-07 21:05:10 |
More descriptive check for assignment. | 474462b44fe20e958e8c6a3b51ba2da9c4a46451 | lep | 2016-11-24 16:47:15 |
Actually add all the sources to the release zipball | 151ae88aac4c3ac8aae432a4a240239f652fa8f4 | lep | 2016-11-10 15:30:38 |
Don't treat ``.'' as a valid real value. | 72e5087e22af66de0765c6d4f9ceae154725e2c2 | lep | 2016-10-24 14:55:02 |
Also split on \r in flag parser. | 519d685ab24864716e3a1ecfd797790a327868ca | lep | 2016-08-28 12:41:08 |
Improved errors for function-calls. | 5a50178a03c5aa3d153e8699070942327fde0b7b | lep | 2016-08-27 18:44:01 |
A very strange error with newlines and comments. | d822cacbd889fe723102102c8a09d578d90f013e | lep | 2016-08-21 09:15:00 |
Added +nosyntaxerror and +nosemanticerror | e755e12b3cab1d5069574e34d22633dd420bb230 | lep | 2016-05-07 13:42:57 |
MinGW fixes. | f579fad932039f1bca43e7612154f5b7dc4aea4f | lep | 2016-03-13 19:29:36 |
Added +shadow description to -h | 6a62b1ecf773175992a2a430a178fffb5532e467 | lep | 2016-03-13 19:35:20 |
File | Lines added | Lines deleted |
---|---|---|
Makefile | 2 | 2 |
File Makefile changed (mode: 100644) (index a6b2e5c..6865015) | |||
... | ... | clean-prof-files: ## Cleans all profiling files | |
83 | 83 | ||
84 | 84 | ||
85 | 85 | pjass.exe: CFLAGS=-O3 | pjass.exe: CFLAGS=-O3 |
86 | pjass.exe: CC=i686-w64-mingw32-gcc | ||
86 | pjass.exe: CC=mingw32-gcc | ||
87 | 87 | pjass.exe: $(SRC) main.c token.yy.c grammar.tab.c | pjass.exe: $(SRC) main.c token.yy.c grammar.tab.c |
88 | 88 | $(CC) $(CFLAGS) $^ -o pjass.exe -DVERSIONSTR="\"git-$(VERSION)\"" | $(CC) $(CFLAGS) $^ -o pjass.exe -DVERSIONSTR="\"git-$(VERSION)\"" |
89 | 89 | ||
... | ... | pjass-git-$(VERSION)-src.zip: main.c grammar.y token.l Makefile readme.md AUTHOR | |
94 | 94 | zip -q -r pjass-git-$(VERSION)-src.zip $^ tests/should-check/ tests/should-fail/ | zip -q -r pjass-git-$(VERSION)-src.zip $^ tests/should-check/ tests/should-fail/ |
95 | 95 | ||
96 | 96 | pjass-git-$(VERSION).zip: pjass.exe | pjass-git-$(VERSION).zip: pjass.exe |
97 | strip pjass.exe | ||
97 | mingw32-strip pjass.exe | ||
98 | 98 | upx --best --ultra-brute pjass.exe > /dev/null | upx --best --ultra-brute pjass.exe > /dev/null |
99 | 99 | zip -q pjass-git-$(VERSION).zip pjass.exe | zip -q pjass-git-$(VERSION).zip pjass.exe |
100 | 100 |