With gcc --version

$ gcc --version
gcc (GCC) 15.1.1 20250521 (Red Hat 15.1.1-2)
Copyright (C) 2025 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

this avoids a warning, that gcc is too old. Before:

$ rm src/config.mak 
$ make config
make -C src/ config 
make[1]: Entering directory '/git/voip/kamailio/src'
target architecture <x86_64>, host architecture <x86_64>
Makefile.defs:1065: You are using an old and unsupported gcc version  (15.0+), compile at your own risk!
making config...
rm -f modules.lst
make --no-print-directory modules.lst
saving modules list...
make[1]: Leaving directory '/git/voip/kamailio/src'

after:

$ rm src/config.mak 
$ make config
make -C src/ config 
make[1]: Entering directory '/git/voip/kamailio/src'
target architecture <x86_64>, host architecture <x86_64>
making config...
rm -f modules.lst
make --no-print-directory modules.lst
saving modules list...
make[1]: Leaving directory '/git/voip/kamailio/src'

You can view, comment on, or merge this pull request online at:

  https://github.com/kamailio/kamailio/pull/4318

Commit Summary

File Changes

(1 file)

Patch Links:


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/pull/4318@github.com>