Emit compile instruction if --no-compile
flag is introduced
#2077
Labels
c
Related to C target
cmake
cpp
Related to C++ target
enhancement
Enhancement of existing feature
good first issue
Good for newcomers
This is similar to #1986.
I am trying to export
src-gen
toarmv7l
target and build there because I couldn't figure out how to make cross-compiling work. It appears thatcmake src-gen/TargetName
is futile because I need to supply a bunch of flags, which will emit if I do not include--no-compile
, something like:cmake -DLF_REACTION_GRAPH_BREADTH=3 -DLF_THREADED=1 -DNUMBER_OF_WORKERS=3 -DSCHEDULER=NP -DLOG_LEVEL=2 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/nkagamihara/lf/ScheduleTestVanilla -DCMAKE_INSTALL_BINDIR=bin -DLF_FILE_SEPARATOR="/" -DLF_SOURCE_DIRECTORY="/home/nkagamihara/lf/ScheduleTestVanilla/src" -DLF_PACKAGE_DIRECTORY="/home/nkagamihara/lf/ScheduleTestVanilla" /home/nkagamihara/lf/ScheduleTestVanilla/src-gen/ScheduleTest
It would be nice if we could emit this if
--no-compile
is supplied, or generate a script for compilation.Expected behaviour
The text was updated successfully, but these errors were encountered: