uptane / aktualizr

C++ Uptane Client
Mozilla Public License 2.0
15 stars 15 forks source link

aktualizr: fix build error 'uint8_t' does not name a type [V2] #102

Closed DengkeDu closed 11 months ago

DengkeDu commented 11 months ago

My environment: meta-updater: master branch [c10f9f] yocto poky: master branch [303421] ARCH: arm64

When I take : bitbake aktualizr

Output error said : uint8_t does not name a type

Add the header file cstdint to asn1-cer.h to fix it.

pattivacek commented 11 months ago

Hello, just FYI for future reference, you don't need to close the MR and create a new one every time to just make a new change. In fact, it's much easier to follow the history if you continue to reuse the same one and just force push to the same branch.

DengkeDu commented 11 months ago

Hello, just FYI for future reference, you don't need to close the MR and create a new one every time to just make a new change. In fact, it's much easier to follow the history if you continue to reuse the same one and just force push to the same branch.

Thanks for advice : force push, I will follow it future.