Ниже мой код на c ++ и мой файл конфигурации.
когда я бегу spawn-fcgi -a120.0.0.1 -p9000 -n ./rtb.o
Я получаю эту ошибку
spawn-fcgi: exec failed: Exec format error
Вот мой код на C ++, который я собрал как rtb.o
#include "fcgi_stdio.h"
#include <stdlib.h>
using namespace std;
int main()
{
int count = 1;
while(FCGI_Accept() >= 0)
printf("Content-type: text/html\r\n"
"\r\n"
"<title>FastCGI Hello!</title>"
"<h1>FastCGI Hello!</h1>"
"Request number %d running on host \n",
++count);
return 0;
}
Итак, что я сделал не так?