Error 127 make file error using qt plugin - eclipse

I am using Eclipse CDT and I have installed a Qt plugin in it. I have imported a Qt project using the Qt plugin, the project was building fine earlier when I used Qt 4.8 but now it is giving a build error:
Make error 127
I have checked everything from flags to libraries to includes still error is persistent.

Related

Netbeans 13 installing native library error

I'm trying to install netbeans and the following error appears:
Cannot load native library which is strictly necessary to work correctly. Exception: org.netbeans.installer.utils.exceptions.NativeException: Cannot load native library from path: native/jnilib/windows/windows-x64.dll
I've already added the JAVA_HOME variable and it's showing the path in the prompt:

Robot Standard library shows non-accessible in eclipse

Need help to resolve compilation/build issue for robot test suite in eclipse (RED plugin).
Problem:
Files under standard library are non-accessible
compilation failed for the below robot code from https://github.com/nokia/RED due to keyword "log" not recognized.
*** Keywords ***
myKW
log hi!
*** Test Cases ***
myTest
myKW
Environment:
Robot Framework Version: 3.2.2 and also tried with latest
Python Version: 3.9.7
Red plugin: Installed from eclipse market place (https://marketplace.eclipse.org/content/red-robot-editor)
Note: In Eclipse Window->Preference->Robot Framework as well as in red.xml the path to robot framework is correct
Changing the python version to 3.7.0 and robot framework to 3.2.2 resolved the issue

Qt 5.6 on windows compilier error

I'm starting out with QT creator
My objective is to use it to create a Application using Qt3D and QT quick Ui
When I try to create a project it shows me I don't have a compiler yet: (screenshot on link)
QT new project, no compiler error
If I try to build an example it shows me the following error:
16:35:11: Configuration is faulty. Check the Issues view for details.
Error while building/deploying project shadow-map-qml (kit: Desktop Qt 5.6.0 MSVC2015 64bit)
When executing step "Make"
Did I do something wrong on the installation or Do I need to download and install a separate compiler? If so for Qt 5.6 on windows 10 which should I download?

Executing cuda program through Eclipse is giving error

I am using eclipse to execute a cuda program. I have downloaded a CUDA PLUGIN for
eclipse. When I execute sample cuda program given by plugin its fine but when I try
to execute any other program I am getting error undefined reference to main...
make
Building target: Add_cuda
Invoking: NVCC Linker
nvcc -L/export/trainee3/dinesh/cuda5.0/lib64 -o "Add_cuda" ./mycuda.o -lcudart
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../lib64/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: ld returned 1 exit status
I found in stackoverflow that some times we get this problem because of system startup file
I used flag -nostartfiles but it is not working in my case..
I have included lib64 and include path in c++ build.
So any suggestion to over come this problem....
We've been over this already.
Use nsight eclipse edition instead.
If you have cuda 5.0 or 5.5 installed, just type nsight in a terminal session.
If you really want to use that Eclipse CUDA plugin (which is no longer supported, I don't believe), then start with the C++ sample project, which you agree now and back then would work. Then modify the source code in that project. Don't create your own project.
Install CUDA 5. It comes with Nsight Eclipse version. Very Elegant to use. NV Visual profiler is integrated with Nsight. Syntax highlighting and debug mode are very easy to use.

Eclipse juno + cuda plugin error

I am using Eclipse Juno parallel version. I have installed
cuda plugin. But while building a sample cuda helloworld
program I am getting error -
make all
make: *** No rule to make target `exe_cuda', needed by `all'. Stop.
******Makefile snapshot**************
all: exe_cuda
# Tool invocations
#echo 'No tool found that can build the extension specified with the build
artifact name $#'
# Other Targets
clean:
-$(RM) $(OBJS)$(C_DEPS) exe_cuda
-#echo ' '
Any suggestion......
I agree that the toolchain does not appear to be set up properly for C projects.
My suggestions are:
Create a C++ project instead. That seems to work.
Use Nsight Eclipse Edition instead. It is installed automatically with the linux CUDA 5 package (just type nsight from a terminal window).
You could report the problem to fixstars corporation, the developer of that cuda plugin. It seems they have not updated it since 2011, so I don't know if it's actively maintained. But the help page is here which includes a link for a mailing list you could use.