File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -402,6 +402,13 @@ fn get_all_commands() []Command {
402
402
rmfile: 'v.c'
403
403
}
404
404
}
405
+ $if linux || macos {
406
+ res << Command{
407
+ line: '${vexe} -gc none -no-retry-compilation -cc tcc -d use_openssl -showcc examples/veb/todo/main.v'
408
+ okmsg: 'A simple veb app, compiles with `-gc none -no-retry-compilation -cc tcc -d use_openssl` on macos and linux'
409
+ rmfile: 'examples/veb/todo/main'
410
+ }
411
+ }
405
412
$if linux {
406
413
res << Command{
407
414
line: '${vexe} vlib/v/tests/bench/bench_stbi_load.v && prlimit -v10485760 vlib/v/tests/bench/bench_stbi_load'
Original file line number Diff line number Diff line change @@ -5026,7 +5026,7 @@ static int mz_mkdir(const char *pDirname) {
5026
5026
}
5027
5027
5028
5028
#ifndef MINIZ_NO_TIME
5029
- #if (defined(__FreeBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)) && !defined(FREEBSD)
5029
+ #if ( defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)) && !defined(FREEBSD)
5030
5030
#include < utime.h>
5031
5031
#else
5032
5032
#include < sys/utime.h>
@@ -5073,7 +5073,7 @@ static int mz_mkdir(const char *pDirname) {
5073
5073
5074
5074
#elif defined(__TINYC__)
5075
5075
#ifndef MINIZ_NO_TIME
5076
- #if (defined(__FreeBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)) && !defined(FREEBSD)
5076
+ #if ( defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__)) && !defined(FREEBSD)
5077
5077
#include < utime.h>
5078
5078
#else
5079
5079
#include < sys/utime.h>
You can’t perform that action at this time.
0 commit comments