Enable Parallel Linking for LTO builds

- With meson 0.57.0 released yesterday, we now have meson
  support to automatically deduce the number of threads that
  can be used for link time optimization.This would add flto=[n],
  where n is the number of threads to be used while linking.

- For more details, check the below meson issue:
  https://github.com/mesonbuild/meson/issues/7820

Tested By:

- Downladed meson 0.57.0, and compiled bmcweb using that and
  observed the improvement in compilation time.

Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: Ifcbc2f56d4a1ad9d30e59c8ac008d658fefefdfe
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/meson.build b/meson.build
index 6dd903b..8c766bf 100644
--- a/meson.build
+++ b/meson.build
@@ -8,7 +8,9 @@
             'buildtype=debugoptimized',
             'b_ndebug=if-release',
             'b_lto=true',
-            'cpp_rtti=false'
+            'cpp_rtti=false',
+            'b_lto_mode=default',
+            'b_lto_threads=0'
            ])
 
 # Project related links