mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-22 08:43:54 +08:00
0b902a02c1
* complie boardd without python * not good, but don't want to lose the file, because it works * clean a bit * update dbc * should build on CI * not good, but don't want to lose the file, because it works * clean a bit * should build on CI * remove unneeded path * reorder paths * reduce diff * and now it works?! * ... should work in CI * add kj, 30% chance to fix macos * pydebug * new way to find path * fix :) * tested * sanity check * repl. MacOS flags * hope it works * need more logs * need more logs2 * test if it works * should work on CI * correct python file * should not work * cleanup * real cleanup * more removals * 50% of file * transformations * fixed a hardcoded variable * more logs * simpl. * kalman * all donw if it passes tests * cleanup * reduce code by 20 lines if this works * fix bugs * cleanup * SharedLibrary * cleanup * ... * remove unused * CI fix maybe? * add more valid path * more logs * ...: * fix webcam CI * remove WError flag * deprecated is not an error * more Wno things * reduce diff, add Wno to env * don't import nonexistent stuff * SharedLibrary v2 * less custom env * renaming, remove SharedLibs * pack libs in envCython * experiment * better docker caching * whitespace * more docker caching * improvement * improvements Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> old-commit-hash: 9529764549b8c59f7cf141ff3d2d9613ab53beab
38 lines
957 B
Python
38 lines
957 B
Python
import SCons
|
|
from SCons.Action import Action
|
|
|
|
cythonAction = Action("$CYTHONCOM")
|
|
|
|
def create_builder(env):
|
|
try:
|
|
cython = env['BUILDERS']['Cython']
|
|
except KeyError:
|
|
cython = SCons.Builder.Builder(
|
|
action = cythonAction,
|
|
emitter = {},
|
|
suffix = cython_suffix_emitter,
|
|
single_source = 1)
|
|
env['BUILDERS']['Cython'] = cython
|
|
return cython
|
|
|
|
def cython_suffix_emitter(env, source):
|
|
return "$CYTHONCFILESUFFIX"
|
|
|
|
def generate(env):
|
|
env["CYTHON"] = "cythonize"
|
|
env["CYTHONCOM"] = "$CYTHON $CYTHONFLAGS $SOURCE"
|
|
env["CYTHONCFILESUFFIX"] = ".cpp"
|
|
|
|
c_file, _ = SCons.Tool.createCFileBuilders(env)
|
|
|
|
c_file.suffix['.pyx'] = cython_suffix_emitter
|
|
c_file.add_action('.pyx', cythonAction)
|
|
|
|
c_file.suffix['.py'] = cython_suffix_emitter
|
|
c_file.add_action('.py', cythonAction)
|
|
|
|
create_builder(env)
|
|
|
|
def exists(env):
|
|
return True
|