summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgkostka <kostka.grzegorz@gmail.com>2016-03-21 20:39:02 +0100
committergkostka <kostka.grzegorz@gmail.com>2016-03-21 20:39:02 +0100
commit6e3301d5ce170df63d2e3f8ce02cb61519ca1bce (patch)
tree213737529194c2ec6048512ea1fd0a091014721f
parentb088876e58e9d57b0066f10d96ba02985457fda7 (diff)
Remove depreciated blackfin build
Blackfin toolchain is too old to build lwext4 correctly
-rw-r--r--Makefile8
-rw-r--r--README.md8
-rw-r--r--toolchain/bf518.cmake7
3 files changed, 1 insertions, 22 deletions
diff --git a/Makefile b/Makefile
index 877cb5b..255aba4 100644
--- a/Makefile
+++ b/Makefile
@@ -27,13 +27,7 @@ generic:
cd build_generic && cmake -G"Unix Makefiles" \
$(COMMON_DEFINITIONS) \
-DCMAKE_TOOLCHAIN_FILE=../toolchain/generic.cmake ..
-
-bf518:
- rm -R -f build_bf518
- mkdir build_bf518
- cd build_bf518 && cmake -G"Unix Makefiles" \
- $(COMMON_DEFINITIONS) \
- -DCMAKE_TOOLCHAIN_FILE=../toolchain/bf518.cmake ..
+
avrxmega7:
rm -R -f build_avrxmega7
diff --git a/README.md b/README.md
index 11f4f8a..ed6133d 100644
--- a/README.md
+++ b/README.md
@@ -194,14 +194,6 @@ For other targets compilation passes (with warnings somewhere) but tests are
not done yet. Lwext4 code is written with endianes respect. Big endian
behavior also hasn't been tested yet.
-Build bf518 library:
-------------
-```bash
- make bf518
- cd build_bf518
- make lwext4
- ```
-
Build avrxmega7 library:
------------
```bash
diff --git a/toolchain/bf518.cmake b/toolchain/bf518.cmake
deleted file mode 100644
index 53bdf93..0000000
--- a/toolchain/bf518.cmake
+++ /dev/null
@@ -1,7 +0,0 @@
-# Name of the target
-set(CMAKE_SYSTEM_NAME Generic)
-set(CMAKE_SYSTEM_PROCESSOR bf518)
-
-set(MCPU_FLAGS "-mcpu=bf518")
-
-include(${CMAKE_CURRENT_LIST_DIR}/common/bfin-elf.cmake) \ No newline at end of file