Thomas
Thomas
Well, it depends on the definition of "retiring from active participation".
My applications target the STM8 in general, and specifically low-cost STM8S003F3 uCs used in different cheap off-the-shelf boards. The STM8 has IAP features similar to the MSP430, the 8bit performance...
Roger, do you have docs on "idioms"? By the way, abandoned experiments are a good thing: failure is a necessary result of research (the alternatives are "doing the obvious", or...
You might want to have a look at the [ELVM Compiler Infrastructure](https://github.com/shinh/elvm), even if it looks more like a proof of concept. The (very simple) Forth backend is [here](https://github.com/shinh/elvm/blob/master/target/forth.c).
You're right - `libvcsm.so` is missing, and in fact `/opt/` is empty! I had believed that `libraspberrypi-dev` contains all the necessary dependencies, and I double-checked that it is installed. Do...
Ok, both files had been in `/usr/lib/arm-linux-gnueabihf/`. I've downloaded `https://github.com/raspberrypi/firmware` created a symlink. I'm still getting the same error. The contents of '/opt/vc/lib/` is now the following: ``` thomas@zero:~/opencl/VC4CL/build $...
Note: https://github.com/doe300/VC4CL/issues/69 references https://github.com/doe300/VC4CL/issues/53 I'll try what @Tritbool proposed, "install userland from source": https://github.com/doe300/VC4CL/issues/53#issuecomment-507254718
The Bullseye installation was reasonably fresh and clean (I installed a few standard packages unrelated to machine level development). The problem persisted after building "userland" from source - I decided...
This time it worked :-) The following should result in a working build: 1. build and install [userland](https://github.com/raspberrypi/userland) 2. follow the instructions [here](https://qengineering.eu/install-opencl-on-raspberry-pi-3.html) For testing the work-around that you proposed...
After changing `src/CMakeLists.txt` building VC4CL worked. I haven't tested, though, if the problem comes from VC4CLStdLib or VC4C. ``` diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 99ed99e..b1e6942 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt...