From 902e99e6955aa3be7e70023881d3720a054e7320 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Mon, 1 Jan 2024 19:54:43 +0100 Subject: [PATCH] remove OpenMP from readme --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 29f06ae..7daaf73 100644 --- a/README.md +++ b/README.md @@ -17,24 +17,22 @@ This crate can either use and link a version of HiGHS that is already installed ## Usage -At runtime, HiGHS depends at the minimum on the C++ standard library and OMP. -They need to be installed both on your system and any system you want to deploy your application to. +At runtime, HiGHS depends at the minimum on the C++ standard library. +It needs to be installed both on your system and any system you want to deploy your application to. How you install these depends on your operating system. #### Debian ``` -sudo apt-get install libstdc++6 libgomp1 +sudo apt-get install libstdc++6 ``` -(These are probably already installed on your system) +(but it is probably already installed on your system) #### macOS -``` -brew install libomp -``` +libc++ comes by default when installing XCode. ### Building HiGHS