-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for GCC-14. handle_python_function defined with only one argume… #91
Conversation
…nt, struct Value has two in command.h. Gave default of 0 to second argument in call from expr.c. Change from int to long int in pyvar_to_tfvar.
@@ -466,7 +466,7 @@ struct Value *handle_python_command( String *args, int offset ) | |||
return pyvar_to_tfvar( pRc ); | |||
} | |||
|
|||
struct Value *handle_python_function( conString *args ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really dont understand why we need that empty argument..
Whats the error without it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking back, it doesn't appear to have been needed. I think I tried to "fix" a compile error by changing something in expr.c first, when I only needed to address the one below in tfpython.c.
When compiling with GCC-14, I got this error:
tfpython.c: In function ‘pyvar_to_tfvar’:
tfpython.c:213:76: error: passing argument 3 of ‘PyBytes_AsStringAndSize’ from incompatible pointer type [-Wincompatible-pointer-types]
213 | if( PyBytes_Check( pRc ) && ( PyBytes_AsStringAndSize( pRc, &cstr, &len ) != -1 ) ) {
| ^~~~
| |
| int *
In file included from /usr/include/python3.12/Python.h:50,
from tfpython.h:6,
from tfpython.c:10:
/usr/include/python3.12/bytesobject.h:57:17: note: expected ‘Py_ssize_t *’ {aka ‘long int *’} but argument is of type ‘int *’
57 | Py_ssize_t len / pointer to length variable or NULL */
Changing int to long int on line 204 compiles without issue.
Like I said in the first one... I really don't know C at all, and was just trying to find something that would compile so that someone who knows better than me might be able to save a slight amount of time. :)
@fierlo Sorry for long delays.. didnt looked here for long time.. |
Thanks for you efforts fiero, I tried compiling from your gcc14 branch, but I still have errors, (first one shown below) Ingwars, I would fix them if I knew how Cheers, Gary
using
python 3.12.7 |
If you're compiling on Arch, the default CFLAGs are: checking ICU_CFLAGS... -std=c11 which means that when you're compiling in Arch, it's checking the code against a different C standard (https://gcc.gnu.org/onlinedocs/gcc/Standards.html). That is what's generating a lot of the errors. @ingwarsw can likely confirm that my interpretation of the documentation is correct. If you try to compile without the -std=c11, gcc uses the gnu17 "standard" by default. |
Made a new one because I really don't know how to use Github properly. |
resolves #87
Small fixes for GCC-14. Fixes compiled without issue in debian-sid (gcc14, python3.12.6).
Changed type of len from int to long int for pyvar_to_tfvar in tfpython.c, was generating an error.
expr.c call to handle_python_function had error when compiling Python support.
typedef struct Value in command.h has two arguments. Only one provided in expr.c / tfpython.c/h. Updated tfpython.c/h, and added a default/dummy value in call from expr.c.
There's almost definitely a better way to do this, but I don't really know C at all, and this fixed the errors when compiling with the following options:
--enable-atcp --enable-gmcp --enable-option102 --enable-python