Using boost in embedded system with memory limitation

前端 未结 6 843
夕颜
夕颜 2021-01-04 19:01

We are using c++ to develop an application that runs in Windows CE 4 on an embedded system.

One of our constraint is that all the memory used by the application shal

6条回答
  •  失恋的感觉
    2021-01-04 19:17

    We use boost for embedded systems. With boost you can pick and choose what you use. We use smart_ptr and boost::bind in all of our projects. We write software for cheap cell phones. And if Windows CE can run on your hardware I would expect that parts of boost would be applicable. There are parts of boost that have no allocation and you might find them useful.

    I would pick and choose based on your requirements.

    Like anything that you use, you need to know the costs.

提交回复
热议问题