darlinghq / darling-docs

Darling Docs
http://docs.darlinghq.org
41 stars 23 forks source link

Add uninstall before make install #64

Closed superbonaci closed 1 year ago

superbonaci commented 1 year ago

Having a previous install can cause issues, so in section Now let's build Darling: I would recommend adding uninstall:

# Move into the cloned sources
cd darling 

# Make a build directory
mkdir build && cd build

# Configure the build
cmake ..

# Build and install Darling, remove previous install before upgrading
make
sudo ../tools/uninstall
sudo make install

https://docs.darlinghq.org/build-instructions.html

superbonaci commented 1 year ago

Great!