0

Here is the link to the tutorial:

https://github.com/rumpkernel/wiki/wiki/Tutorial%3A-Serve-a-static-website-as-a-Unikernel

When I execute the script via ./build-rr.sh hw, I get:

/Users/jeffrey/rumprun/buildrump.sh/buildrump.sh: line 1021: type:    objcopy: not found
>> ERROR:
>> cannot find $OBJCOPY (objcopy)
LemonPie
  • 806
  • 1
  • 11
  • 23

1 Answers1

1

objcopy is missing, it is part of binutils.
You could installed it using :

apt-get install binutils

or

yum install binutils
mpromonet
  • 11,326
  • 43
  • 62
  • 91