0

Is there a way to start a program with haswell-optimized libc library on standard centos 7?

I prefer to do this without compiling myself.

Nick
  • 826
  • 2
  • 15
  • 42

1 Answers1

2

You invoke the program as follows:

LD_LIBRARY_PATH=/path/to/haswell_lib:$LD_LIBRARY_PATH ./program
Tero Kilkanen
  • 36,796
  • 3
  • 41
  • 63