bytebeat_compiler.py: add ./
before compilation paths
This commit is contained in:
parent
f9ce5faa60
commit
0f20974908
@ -24,6 +24,12 @@ PATHS["output"] = path_join(PATHS["build_dir"], PATHS["output"])
|
||||
PATHS["path_to_fwrite_le_header"] = PATHS["src_dir"] + PATHS["fwrite_le_header"]
|
||||
PATHS["path_to_fwrite_le"] = PATHS["src_dir"] + PATHS["fwrite_le"]
|
||||
|
||||
# Add `.` directory before all paths for compilation
|
||||
PATHS["template"] = path_join(".", PATHS["template"])
|
||||
PATHS["substitute"] = path_join(".", PATHS["substitute"])
|
||||
PATHS["output"] = path_join(".", PATHS["output"])
|
||||
PATHS["path_to_fwrite_le"] = path_join(".", PATHS["path_to_fwrite_le"])
|
||||
|
||||
# Default parameters
|
||||
DEFAULT_PARAMETERS = {
|
||||
"CC": "gcc",
|
||||
|
Loading…
Reference in New Issue
Block a user