diff --git a/toolchain/musl/Config.in b/toolchain/musl/Config.in
index 4049f24664cf4a340fb05df07ac95615d2b14bd0..8892af01a16d7d983ec5821b7b49bb86f6c6eeb7 100644
--- a/toolchain/musl/Config.in
+++ b/toolchain/musl/Config.in
@@ -3,13 +3,13 @@
 choice
 	prompt "musl Version"
 	depends on TOOLCHAINOPTS && USE_MUSL
-	default MUSL_USE_VERSION_0_9_15
+	default MUSL_USE_VERSION_1_0_0
 	help
 	  Select the version of musl you wish to use.
 
-	config MUSL_USE_VERSION_0_9_15
-		select MUSL_VERSION_0_9_15
-		bool "musl 0.9.15"
+	config MUSL_USE_VERSION_1_0_0
+		select MUSL_VERSION_1_0_0
+		bool "musl 1.0.0"
 
 endchoice
 
diff --git a/toolchain/musl/Config.version b/toolchain/musl/Config.version
index b88bf65bae4adcc5c906aa18935fb5106376c35a..685aef2b9d8dcc14b75fcc667faa61c3d6390ee2 100644
--- a/toolchain/musl/Config.version
+++ b/toolchain/musl/Config.version
@@ -3,9 +3,9 @@ if USE_MUSL
 config MUSL_VERSION
 	string
 	depends on USE_MUSL
-	default "0.9.15"	if MUSL_VERSION_0_9_15
+	default "1.0.0"	if MUSL_VERSION_1_0_0
 
-config MUSL_VERSION_0_9_15
+config MUSL_VERSION_1_0_0
 	default y if !TOOLCHAINOPTS
 	bool
 
diff --git a/toolchain/musl/Makefile b/toolchain/musl/Makefile
index 66b874eb2e993e2c90c5f77ab85a2fa1f97162dd..35f160db364a9417e028b468828b1668789e24e6 100644
--- a/toolchain/musl/Makefile
+++ b/toolchain/musl/Makefile
@@ -19,7 +19,7 @@ define Host/SetToolchainInfo
 endef
 
 define Host/Compile
-	$(MAKE) $(HOST_JOBS) $(MUSL_MAKEOPTS) all
+	+$(MAKE) $(HOST_JOBS) $(MUSL_MAKEOPTS) all
 endef
 
 define Host/Install
diff --git a/toolchain/musl/common.mk b/toolchain/musl/common.mk
index 538ad270e5dbc97b0826ce35fdce2475ab93ddcf..e974d28fb98831800c561c94f6e216a67cab5208 100644
--- a/toolchain/musl/common.mk
+++ b/toolchain/musl/common.mk
@@ -11,7 +11,7 @@ PKG_NAME:=musl
 PKG_VERSION:=$(call qstrip,$(CONFIG_MUSL_VERSION))
 PKG_RELEASE=1
 
-PKG_SOURCE_MD5SUM_0.9.15:=06f590a38c85722ee9343db2416425f4
+PKG_SOURCE_MD5SUM_1.0.0:=e54664fdf211d27737e328c4462b545e
 
 PKG_SOURCE_URL:=http://www.musl-libc.org/releases
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
diff --git a/toolchain/musl/patches-0.9.15/100-in_h_are_4_equal_parenthesis.patch b/toolchain/musl/patches-0.9.15/100-in_h_are_4_equal_parenthesis.patch
deleted file mode 100644
index b77f650d0dfaa69fcc2a4677674eb6344f3ee951..0000000000000000000000000000000000000000
--- a/toolchain/musl/patches-0.9.15/100-in_h_are_4_equal_parenthesis.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/include/netinet/in.h
-+++ b/include/netinet/in.h
-@@ -149,7 +149,7 @@ uint16_t ntohs(uint16_t);
-         (IN6_IS_ADDR_MULTICAST(a) && ((((uint8_t *) (a))[1] & 0xf) == 0xe))
- 
- #define __ARE_4_EQUAL(a,b) \
--	(!( 0[a]-0[b] | 1[a]-1[b] | 2[a]-2[b] | 3[a]-3[b] ))
-+	(!( (0[a]-0[b]) | (1[a]-1[b]) | (2[a]-2[b]) | (3[a]-3[b]) ))
- #define IN6_ARE_ADDR_EQUAL(a,b) \
- 	__ARE_4_EQUAL((const uint32_t *)(a), (const uint32_t *)(b))
- 
diff --git a/toolchain/musl/patches-0.9.15/110-syslog_log_upto_parenthesis.patch b/toolchain/musl/patches-0.9.15/110-syslog_log_upto_parenthesis.patch
deleted file mode 100644
index 840dd401324124e3d2c39578054ded2a5b0fb49a..0000000000000000000000000000000000000000
--- a/toolchain/musl/patches-0.9.15/110-syslog_log_upto_parenthesis.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/include/syslog.h
-+++ b/include/syslog.h
-@@ -21,7 +21,7 @@ extern "C" {
- #define	LOG_MAKEPRI(f, p) (((f)<<3)|(p))
- 
- #define LOG_MASK(p) (1<<(p))
--#define LOG_UPTO(p) ((1<<(p)+1)-1)
-+#define LOG_UPTO(p) ((1<<((p)+1))-1)
- 
- #define LOG_KERN     (0<<3)
- #define LOG_USER     (1<<3)
diff --git a/toolchain/musl/patches-0.9.15/120-add_glob_onlydir.patch b/toolchain/musl/patches-1.0.0/100-add_glob_onlydir.patch
similarity index 100%
rename from toolchain/musl/patches-0.9.15/120-add_glob_onlydir.patch
rename to toolchain/musl/patches-1.0.0/100-add_glob_onlydir.patch