Active6 months ago
  1. How To Turbo Boost Intel
  2. How To Manual Turbo Boost On Mac Computer

How do you install Boost on MacOS?Right now I can't find bjam for the Mac.

May 07, 2013  Turbo Boost needs to be enabled in say the UEFI/EFI/BIOS which is the case of any Mac. When Turbo Boost is enabled the system can use it to throttle cpu power. There is no way to influence this as it is an automatic system (there is 1 influence: the software you run). Oct 13, 2013  There’s more to the conversation. Turbo Boost happens on a lightly-loaded Mac. It turns the clock speed up higher for faster performance. This cannot be done on a heavily-loaded Mac because it would overheat and shut itself down. It's already on.

MrTux
23k15 gold badges66 silver badges102 bronze badges
Robert GouldRobert Gould
42.5k53 gold badges169 silver badges262 bronze badges
Intel

10 Answers

Honest Abe
5,7024 gold badges34 silver badges55 bronze badges
diesdies
1,5341 gold badge10 silver badges2 bronze badges

You can get the latest version of Boost by using Homebrew.

brew install boost.

Honest Abe
5,7024 gold badges34 silver badges55 bronze badges
jrwrenjrwren
13k5 gold badges29 silver badges49 bronze badges

How To Turbo Boost Intel

Just get the source, and compile Boost yourself; it has become very easy. Here is an example for the current version of Boost on the current macOS as of this writing:

  1. Download the the .tar.gz from https://www.boost.org/users/download/#live
  2. Unpack and go into the directory:

  3. Configure (and build bjam):

  4. Build:

  5. Install:

Depending on the prefix you choose in Step 3, you might need to sudo Step 5, if the script tries copy files to a protected location.

MCCCS
6171 gold badge10 silver badges31 bronze badges
sniessnies

Fink appears to have a full set of Boost packages...

With fink installed and running just do

at the terminal and accept the dependencies it insists on. Or use

to get a list of different packages that are availible.

dmckeedmckee
81.6k21 gold badges119 silver badges213 bronze badges

Unless your compiler is different than the one supplied with the Mac XCode Dev tools, just follow the instructions in section 5.1 of Getting Started Guide for Unix Variants. The configuration and building of the latest source couldn't be easier, and it took all about about 1 minute to configure and 10 minutes to compile.

Paul Kohut

In order to avoid troubles compiling third party libraries that need boost installed in your system, run this:

user1823890user1823890

Install both of them using homebrew separately.

brew install boost
brew install bjam

Kondal RaoKondal Rao

One thing to note: in order for that to make a difference you need to have built python with +universal, if you haven't or you're not sure you can just rebuild python +universal. This applies to both brew as well as macports.

OR

JacksonkrJacksonkr
18.9k35 gold badges145 silver badges246 bronze badges

you can download bjam for OSX (or any other OS) here

FerruccioHow To Manual Turbo Boost On MacFerruccio
82.6k35 gold badges202 silver badges287 bronze badges

Install Xcode from the mac app store.Then use the command:

How To Manual Turbo Boost On Mac Computer

the above will install homebrew and allow you to use brew in terminal

then just use command :

which would then install the boost libraries to <your macusername>/usr/local/Cellar/boost

UDAY JAINUDAY JAIN

Not the answer you're looking for? Browse other questions tagged c++macosboost or ask your own question.