diff options
author | Diego Dassie <diego.dassie@texa.com> | 2023-05-11 15:23:20 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-11 11:28:34 -0700 |
commit | bf26b3e5ed3782ffdcf33374a6cf63c38e5e90c0 (patch) | |
tree | 3dd6adb3409c706520ac416ea9104bfc08f74e3c | |
parent | e408f1b84c7e5afb8c5356ddf7ff7d2004a7d4f6 (diff) | |
download | meta-openembedded-bf26b3e5ed3782ffdcf33374a6cf63c38e5e90c0.tar.gz |
paho-mqtt-c: Improve performance
The paho-mqtt-c library keeps it's internal debugging aids
tracing and heap tracking enabled by default
these options can have a noticiable performance impact,
make sure they are disabled.
Signed-off-by: Diego Dassie <diego.dassie@texa.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-connectivity/paho-mqtt-c/paho-mqtt-c_1.3.12.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/paho-mqtt-c/paho-mqtt-c_1.3.12.bb b/meta-oe/recipes-connectivity/paho-mqtt-c/paho-mqtt-c_1.3.12.bb index 0e0f64f5a8..4decb098c7 100644 --- a/meta-oe/recipes-connectivity/paho-mqtt-c/paho-mqtt-c_1.3.12.bb +++ b/meta-oe/recipes-connectivity/paho-mqtt-c/paho-mqtt-c_1.3.12.bb | |||
@@ -30,4 +30,4 @@ do_install:append() { | |||
30 | find ${D}${prefix} -maxdepth 1 -type f -delete | 30 | find ${D}${prefix} -maxdepth 1 -type f -delete |
31 | } | 31 | } |
32 | 32 | ||
33 | EXTRA_OECMAKE = "-DPAHO_WITH_SSL=ON -DPAHO_ENABLE_TESTING=OFF" | 33 | EXTRA_OECMAKE = "-DPAHO_WITH_SSL=ON -DPAHO_ENABLE_TESTING=OFF -DPAHO_HIGH_PERFORMANCE=ON" |