You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
all I had to do was to add the <sys/types.h> to the header file. After that , it will "make" with warnings and not errors.
-and the resulting executable will run.
pi@raspberrypi:~/git/et3400 $ head -10 /home/pi/git/et3400/src/dev/memory_map.h
#ifndef MEMORY_MAP_H
#define MEMORY_MAP_H
#include <sys/types.h>
#include <map>
#include "memory_mapped_device.h"
class MemoryMapManager
{
public:
The text was updated successfully, but these errors were encountered:
I spent most of this morning trying to get the debug version to compile on a Raspberry-PI...
first, the QT5 libraries are misnamed in the repository - (maybe just a 2023 re-name convention) and the cmake is not installed by default.
second, the "off_t" is undefined in memory_map.h
-thanks to @timothy Jones at: https://stackoverflow.com/questions/9073667/where-to-find-the-complete-definition-of-off-t-type/
The text was updated successfully, but these errors were encountered: