I am trying to use the ANT SDK from thisiant website : here, I unzip the folder, then I have a DEMO_LIB file with a Makefile on it. So in my console (from the folder) I run sudo make but I got an error. I have no idea where the error can come from. Do I have to change something in another file manually : keys-from-name.h maybe ? Thank you
GEN extras/keymap/keys-from-name.h
(standard input): No keywords in input file!
Makefile:3024: recipe for target 'extras/keymap/keys-from-name.h' failed
make[2]: *** [extras/keymap/keys-from-name.h] Error 1
make[2] : on quitte le répertoire « /home/ly81551h/Téléchargements/ANT-SDK_Linux_3.8.200_(BETA) (2)/ANT_LIB/udev-175 »
makefile:688: recipe for target 'create_folders' failed
make[1]: *** [create_folders] Error 2
make[1] : on quitte le répertoire « /home/ly81551h/Téléchargements/ANT-SDK_Linux_3.8.200_(BETA) (2)/ANT_LIB »
makefile:65: recipe for target 'lib' failed
make: *** [lib] Error 2
The SDK can be find here : here
Related
I am trying to merge code with the kernel and then compile, but when I run make prepare, I get the following error:
[root#localhost 5.4.231-1.el7.elrepo.x86_64]# make prepare
/usr/src/kernels/5.4.231-1.el7.elrepo.x86_64/Makefile:678: include/config/auto.conf.cmd: No such file or directory
scripts/kconfig/conf --syncconfig Kconfig
Kconfig:34: can't open file "Documentation/Kconfig"
make[3]: *** [syncconfig] Error 1
make[2]: *** [syncconfig] Error 2
make[1]: *** [include/config/auto.conf.cmd] Error 2
make: *** [sub-make] Error 2
[root#localhost 5.4.231-1.el7.elrepo.x86_64]#
I installed Kernel-LT-Devel and headers, and do not know what package I need to complete this requirement, and so I am stuck. Has anyone seen this error before?
Thanks
I'm trying to install omnet++ 5.6.2 but after writing "make" in the command line below error was showing me.
please help me how can solve this problem
Create executable: out/clang-release//embedding.exe
ln: failed to create symbolic link './embbedding.exe': no such file or directly
make[2]: *** [Makefile:87: embedding.exe] Error 1
make[1]: *** [Makefile:134: embedding] Error 2
make: *** [Makefile:28: allmodes] Error 2
Try to turn off a real-time antivirus protection during compilation.
trying to build on OSX, got the following antlr error. Need to install antlr-runtime?
[ 43%] Built target antlr4_runtime
[ 43%] Built target csv_infer
[ 45%] Performing build_static step for 'antlr4_runtime'
make[4]: *** No rule to make target `antlr4_static'. Stop.
make[3]: *** [antlr4_runtime/src/antlr4_runtime-stamp/antlr4_runtime-build_static] Error 2
make[2]: *** [CMakeFiles/antlr4_runtime-build_static.dir/all] Error 2
make[1]: *** [all] Error 2
make: *** [dev] Error 2
This has now been fixed.
CMake 3.14 changed where the ExternalProject module builds the source. It was unable to find ANTLR's own CMake files, necessitating a change to the WORKING_DIRECTORY.
Following the instructions from the offial page, under https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-user/Unix-Installation.html ,
I tried to install the mit-scheme on my new Fedora21 machine .
Anyhow, after a good configuration, the making fails with the following lines:
Makefile:246: recipe for target 'prdb4.o' failed
make[1]: *** [prdb4.o] Error 1
rm cmpauxmd.sMakefile:246: recipe for target 'prdb4.o' failed
make[1]: *** [prdb4.o] Error 1
rm cmpauxmd.s
make[1]: Leaving directory '/root/mitscheme-failing/mit-scheme-9.2/src/microcode'
Makefile:865: recipe for target 'compile-microcode' failed
make: *** [compile-microcode] Error 2
make[1]: Leaving directory '/root/mitscheme-failing/mit-scheme-9.2/src/microcode'
Makefile:865: recipe for target 'compile-microcode' failed
make: *** [compile-microcode] Error 2
So, I tried compiling the sourcecode ... ; it fails with a similar message . Since its saturday I suppose the guys at MIT are on vacation, no use to ask them before monday ... - thats why I post it here .
I now solved it, had to remove the prdb4- module ; the solution is described in detail on the following page:
http://netspectre.de/mitscheme92/
Also there is a sane package for download . The MIT-guys might work it out a better way, when they come along , best regards .
I'm having problem in compiling the Intel DPDK on my Fedora and I really need that.
This is what I have in my terminal:
[gois#localhost dpdk-1.5.2r1]$ make install T=i686-default-linuxapp-gcc
================== Installing i686-default-linuxapp-gcc
== Build scripts
== Build scripts/testhost
== Build lib
== Build lib/librte_eal
== Build lib/librte_eal/common
== Build lib/librte_eal/linuxapp
== Build lib/librte_eal/linuxapp/igb_uio
make: *** /lib/modules/3.11.10-301.fc20.x86_64/build: File or directory not found. Stop.
make[7]: ** [igb_uio.ko] Error 2
make[6]: ** [igb_uio] Error 2
make[5]: ** [linuxapp] Error 2
make[4]: ** [librte_eal] Error 2
make[3]: ** [lib] Error 2
make[2]: ** [all] Error 2
make[1]: ** [i686-default-linuxapp-gcc_install] Error 2
make: ** [install] Error 2
Can someone help me please?
You should install linux headers:
yum install kernel-devel
Then build/ should be a symlink to files needed to build kernel modules.
It looks like RTE_KERNELDIR variable is not set correctly. The installer is not able to access kernel level parameters.