diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2024-01-18 20:06:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-18 16:06:10 -0700 |
| commit | 7606ac4586b9ce976dcf7978a9fe3b7e58d1c727 (patch) | |
| tree | e7e4f0901d7b2243f4a6057b15faa155924da1bb /tools | |
| parent | ef3e9edf8ad84b4f6761b53a400b4f77f767a060 (diff) | |
Setup venv on Jenkinsfile (#135)
* Add venv to Jenkinsfile
* Add readme instructions to venv
* z64compress warning
* fix warnings
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 06be2b1..eb1002b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -31,7 +31,8 @@ PIGMENT64 := $(PIGMENT64_DIR)/pigment64 all: $(IDO_5_3) $(IDO_7_1) $(PIGMENT64) $(MAKE) -C fado - $(MAKE) -C z64compress +# Some gcc versions give a warning about the -flto flag with no parameters. So we override the CFLAGS as a workaround + $(MAKE) -C z64compress CFLAGS="-Os -flto=auto" clean: $(RM) -rf $(IDO_5_3_DIR) $(IDO_7_1_DIR) |
