未解决的包含:Eclipse中的<boost python.hpp =“”>

时间:2017-09-12 13:00:51

标签: boost-python

我在 @Override public void onFinish() { textViewTime.setText(hmsTimeFormatter(timeCountInMilliSeconds)); // call to initialize the progress bar values setProgressBarValues(); // hiding the reset icon imageViewReset.setVisibility(View.GONE); // changing stop icon to start icon imageViewStartStop.setImageResource(R.drawable.icon_start); // making edit text editable editTextMinute.setEnabled(true); // changing the timer status to stopped timerStatus = TimerStatus.STOPPED; MainActivity main = new MainActivity(); main.stop(); } }.start(); countDownTimer.start(); } 安装了Boost Python,其中安装是从 java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ImageView.setBackgroundResource(int)' on a null object reference at com.digitamatix.mukilfm.MainActivity.stop(MainActivity.java:549) 作为根目录运行的。

C:\boost

C:\Program Files\boost_1_65_1已添加到系统的PATH中。在Eclipse中,|C:\ |--|boost |--|--|bin |--|--|share |C:\ |--|Program Files |--|--|boost_1_65_1 或与C:\MinGW\bin相关的任何内容都会返回“未解决的包含”错误。

我已将C:\ MinGW \ bin添加到系统的“路径”中。在Eclipse中,我将以下内容添加到“路径和符号”中的GNU C ++“包含目录”中:

#include <boost/python.hpp>

需要编辑的设置是什么?

1 个答案:

答案 0 :(得分:0)

bjam --debug-configuration必须从根文件夹

运行
  

C:\ Program Files \ boost \ boost_1_65_1

编辑结束时,请转到

  

项目属性&gt; C / C + Build

并添加指向编译器包含路径的链接(在我的例子中,它是Cross G ++ Compiler&gt; Include)。现在可以从#include <boost/whatever>访问提升库。