У меня есть файл Java, который будет выполнять файл C++.
При компиляции C++ я получаю эту ошибку:
"-bash: ./liboperator.dylib: cannot execute binary file"
мой Makefile:
out: operator.cpp
g++ -I"$JAVA_HOME/include" -I"$JAVA_HOME/include/darwin" -dynamiclib -o liboperator.dylib operator.cpp
мой файл C++:
operator.cpp
содержание C++:
#include <time.h>
#include <string>
#include <iostream>
#include <fstream>
#include <string>
#include "jni.h"
#include <stdio.h>
#include "sleep_tracker_AddHours.h"
using namespace std;
JNIEXPORT void JNICALL Java_sleep_1tracker_AddHours_cppCaller(JNIEnv *, jobject){
fstream myfile("/Users/username/project/out.txt", ios::out | ios::app);
if(myfile.is_open()){
myfile << "hello world from C++" << endl;
}
else {
cout << "Unable to open file\n";
}
myfile.close();
return;
}
В чем причина проблемы? Спасибо!