Skip to content

Commit

Permalink
Merge branch 'release/v1.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Nov 12, 2021
2 parents af6603a + b383ba8 commit c4157b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
7 changes: 1 addition & 6 deletions builder/autotiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@
from platformio import fs
from platformio.builder.tools.platformio import SRC_FILTER_DEFAULT

try:
from platformio.project.helpers import get_project_lib_dir
except ImportError:
from platformio.util import get_projectlib_dir as get_project_lib_dir


Import("env")

Expand Down Expand Up @@ -99,7 +94,7 @@ def build_autotiler(build_dir, generator, model_path):
"include")
],
LIBPATH=[join(AUTOTILER_DIR, "lib"),
get_project_lib_dir()] + tmpenv.get("LIBPATH", []),
env.GetProjectConfig().get("platformio", "lib_dir")] + tmpenv.get("LIBPATH", []),
LIBS=["tile"])

# CHECK "libtile.a"
Expand Down
11 changes: 5 additions & 6 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@
"RISC-V"
],
"engines": {
"platformio": "<5"
"platformio": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platform-riscv_gap.git"
},
"version": "1.0.4",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json"
],
"version": "1.0.5",
"frameworks": {
"mbed": {
"package": "framework-gap_sdk",
Expand All @@ -38,14 +34,17 @@
"packages": {
"framework-gap_sdk": {
"type": "framework",
"owner": "platformio",
"version": "~2.0.0"
},
"toolchain-riscv-pulp": {
"type": "toolchain",
"owner": "platformio",
"version": "~1.70101.0"
},
"tool-pulp_tools": {
"type": "uploader",
"owner": "platformio",
"version": "~0.1.0"
}
}
Expand Down

0 comments on commit c4157b0

Please sign in to comment.