We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran into this issue when going through the HelloWorld tutorial. After creating a deployment, the build fails:
[sub-build] Failed to execute: info-cache/fpp_locs: fpp-locate-defs /home/ryan/fprime/HelloWorld/MyDeployment/Top/topology.fpp:85.39 comStub.drvDataOut -> comDriver.send ^ error: identifier expected gmake[4]: *** [CMakeFiles/fpp_locs.dir/build.make:74: ../locs.fpp] Error 1 gmake[3]: *** [CMakeFiles/Makefile2:1920: CMakeFiles/fpp_locs.dir/all] Error 2 gmake[2]: *** [CMakeFiles/Makefile2:1927: CMakeFiles/fpp_locs.dir/rule] Error 2 gmake[1]: *** [Makefile:124: fpp_locs] Error 2
Reverting the changes in requirements.txt from commit c6f8e7b resolved the issue for me.
Operating System: Linux CPU Architecture: aarch64 Platform: Linux-5.15.0-1046-raspi-aarch64-with-glibc2.35 Python version: 3.10.12 CMake version: 3.22.1 Pip version: 24.0 Pip packages: fprime-tools==3.4.3 fprime-gds==3.4.3 fprime-fpp-*==2.1.0a3
fprime-util new --deployment
fprime-util build -j4
Build passes.
The text was updated successfully, but these errors were encountered:
Ah, that is a bug in the new release indeed... we'll ship a new release ASAP. In the meantime the fix is to change in the offending line:
comStub.drvDataOut -> comDriver.$send
Adding the $ (escape character in FPP) in front of send, as "send" is now a reserved keyword in FPP.
Sorry, something went wrong.
Fixed in v3.4.3 - thank you for reporting this!
No branches or pull requests
Problem Description
I ran into this issue when going through the HelloWorld tutorial. After creating a deployment, the build fails:
Reverting the changes in requirements.txt from commit c6f8e7b resolved the issue for me.
Context / Environment
How to Reproduce
fprime-util new --deployment
and select defaultsfprime-util build -j4
Expected Behavior
Build passes.
The text was updated successfully, but these errors were encountered: