Questions tagged [make]

a computer software utility that automatically builds executable programs and libraries from source code using rules defined in Makefiles.

44 questions
16
votes
1 answer

Install drivers for RTL8812au wireless usb adapter

I'm trying to install the RTL8812au drivers for a wireless usb adapter. My error is very similar to another question. Missing build file when building for rtl8812au driver However, the solution does not work for my version kernel version…
Rob S.
  • 421
  • 1
  • 3
  • 10
8
votes
2 answers

Error while trying to compile RStudio

I'm using Raspbian in a Raspberry Pi 2 Model B I've followed the guidelines in the RStudio Webpage and also in this topic https://www.raspberrypi.org/forums/viewtopic.php?f=34&t=55828 sudo su apt-get install git r-recommended git clone…
Geiser
  • 183
  • 1
  • 8
6
votes
3 answers

How can I install vcgencmd on Debian system?

I'm running Debian Buster (Not Raspbian / RaspberryPiOS) and need to install the rpi userland in order to get access to vcgencmd. I've tried the following: cd /tmp git clone https://github.com/raspberrypi/userland.git sudo apt-get install cmake cd…
Phill Healey
  • 223
  • 1
  • 3
  • 10
5
votes
1 answer

Problem with QinHeng CH9200 driver - Pi 2 (4.1.7-v7+)

English is not my native language so please be patient. I'm using a Rasp and the Ethernet port is already taken, so we bought a USB2.0 to Fast Ethernet Adapter, like this one: https://www.jacobsparts.com/items/USB-LAN-04 The RasPi detect the…
Elber CM
  • 286
  • 2
  • 13
3
votes
1 answer

How to install latest munin server

If I install munin server from apt-get, only version 2.0.33-1 is installed which can't be started because Failed to start munin.service: Unit munin.service is masked. make from source fails with Can't locate MasterBuilder.pm in @INC (you may need to…
2
votes
0 answers

Install libfreenect (Kinect 360) on a Raspberry Pi Make error

I am trying to install libfreenect on a Raspberry Pi using the instructions found here: http://blog.bitcollectors.com/adam/2016/01/kinect-support-for-raspberry-pi-using-libfreenect/ On step 4, line 8 when I run make I get the following error: *make:…
GBG
  • 127
  • 6
2
votes
1 answer

How to use "$MAKE install" right?

I want to install RRDTOOL, there are some builds needed to be installed first as specified here. While trying to install every build in bash with a set of commands like these : wget http://pkgconfig.freedesktop.org/releases/pkg-config-0.23.tar.gz …
Digol
  • 173
  • 10
2
votes
2 answers

Fatal Error: GLES2/gl2.h: No such file or directory

I'm trying to install Urho3D on RPi 3. (GPU = 768 MB) I installed all the essential dependencies. All the steps went fine. Until this error which occurred during the final make step: [ 56%] Building CXX object…
Omid1989
  • 662
  • 2
  • 14
  • 29
2
votes
1 answer

Pi with Arch Linux and OpenCV: errors when running cmake

I have a Pi running a fresh Arch Linux installation and I want to install OpenCV 3, but I am facing an error that I do not have when installing OpenCV on my other computers. I wrote a script that works on my other Arch computers, 'opencv' installed…
2
votes
1 answer

Cross compile kernel error

While compiling rt kernel following this http://www.frank-durr.de/?p=203 I got that error
I.Omar
  • 145
  • 3
2
votes
1 answer

Cross-Compiling kernel can't find gcc

I am cross compiling the Raspbian kernel since it will take about 12 hours for the Pi to do (Raspberry Pi 1). I have the build tools for ARM and the kernel in two separate folders in /home/gray/Desktop/tmp/ I am following this guide:…
Gray
  • 41
  • 3
2
votes
1 answer

Should I provide additional parameters for make on Raspberry Pi2?

I was wondering if make would need extra parameters to make use of the 4 core A7 on the Raspberry Pi 2? I have read that you can specify make -j# at a rate of cores x 1.5 to run parallel jobs within make. Will this decrease compile time for custom…
Piotr Kula
  • 17,336
  • 6
  • 66
  • 105
2
votes
0 answers

Make error / Enable monitor mode in Raspberry Pi 3B with Nexmon

I would like to add monitor mode for my raspberry pi 3B (Not B+) by using Nexmon. I am trying the part of [Build patches for bcm43430a1 on the RPI3/Zero W or bcm434355c0 on the RPI3+/RPI4 using Raspbian (recommended)] in this website:…
redbean
  • 21
  • 2
2
votes
3 answers

Makefile error at 36% trying to install OpenCV 4 on RaspBerry Pi 4

I've been trying to install OpenCV on my RaspBerry Pi 4 using: cmake -D CMAKE_BUILD_TYPE=RELEASE \ -D CMAKE_INSTALL_PREFIX=$cwd/installation/OpenCV-"$cvVersion" \ -D INSTALL_C_EXAMPLES=ON \ -D…
greyBow
  • 121
  • 1
  • 4
1
vote
1 answer

Failure to build QT5 5.12.3 on Raspberry Pi zero

Following the instructions in https://www.tal.org/tutorials/building-qt-512-raspberry-pi,: wget http://download.qt.io/official_releases/qt/5.12/5.12.3/single/qt-everywhere-src-5.12.3.tar.xz tar xf qt-everywhere-src-5.12.3.tar.x z git clone…
Soheil Paper
  • 189
  • 1
  • 9
1
2 3