0
#include <iostream>
#include <cstdlib>
#include <windows.h>
#include <libssh.h>
#include <stdlib.h>



using namespace std;

/*
 * 
 */
int main(int argc, char** argv) 

I have that code, and when compiling the error fatal of no Libssh.h is appearing, but when i SHIFT+CLICK over the libssh.h include instruction i jump to the file that already exist and is installed.

I have include it on Netabeans options for C++ compiling.

Any ideas?

Regards.

4

1 に答える 1

0

Netbeans の検索パスは、おそらくコンパイラの検索パスとは異なります。私のマシンlibssh.hでは/usr/include/libssh/libssh.h. インクルードを変​​更してみることができます:

#include <libssh/libssh.h>

または、コンパイラ オプションを変更/usr/include/libssh/して検索パスに追加します。

于 2013-09-26T13:54:40.090 に答える