0

When installing Intel-SGX-Driver(https://github.com/intel/linux-sgx-driver), I got this error:

$ make
make -C /lib/modules/5.4.0-107-generic/build M=/home/niujuxin/Intel SGX/linux-sgx-driver modules
make[1]: Entering directory '/usr/src/linux-headers-5.4.0-107-generic'
make[1]: *** No rule to make target 'SGX/linux-sgx-driver'.  Stop.
make[1]: Leaving directory '/usr/src/linux-headers-5.4.0-107-generic'
Makefile:16: recipe for target 'default' failed
make: *** [default] Error 2

How could I solve it.

SouthStar
  • 3
  • 2

1 Answers1

1

I think that the error make[1]: *** No rule to make target 'SGX/linux-sgx-driver'. Stop. comes from your path containing a space.

In Makefile, Change the line

$(MAKE) -C $(KDIR) M=$(PWD) modules

by

$(MAKE) -C $(KDIR) M="$(PWD)" modules

And you can do the same for the installation rule.


Or simplier, change the file path

Mathieu
  • 8,840
  • 7
  • 32
  • 45