This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

http_cgi.c include problem

Hello everyone,

I want to create a dynamic page.

When i try to include http_cgi.c in my project i get the following errors:

1. http.axf: Error: L6200E: Symbol cgi_process_var multiply defined (by at_http_cgi.o and http_cgi.o).

2. http.axf: Error: L6200E: Symbol cgi_func multiply defined (by at_http_cgi.o and http_cgi.o).

What am i doing wrong?

thanks and regards

Akshat

Parents
  • Most likely you do not have a cgi_func() in your HTTP_CGI.c module, or you have renamed it by a mistake. Then the missing function is linked from the library from the module at_http_cgi.o which includes also the other two functions into the link.

    However you must be using RL-ARM version v3.13 or older. I strongly recommend an upgrade to current RL-ARM version.

    Franc

Reply
  • Most likely you do not have a cgi_func() in your HTTP_CGI.c module, or you have renamed it by a mistake. Then the missing function is linked from the library from the module at_http_cgi.o which includes also the other two functions into the link.

    However you must be using RL-ARM version v3.13 or older. I strongly recommend an upgrade to current RL-ARM version.

    Franc

Children