You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/10/14 03:03:31 UTC

[incubator-nuttx] branch wsl created (now 86c6afe)

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch wsl
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


      at 86c6afe  tools/Config.mk: Don't set HOSTEXEEXT to .exe for Ubuntu on Windows

This branch includes the following new commits:

     new 86c6afe  tools/Config.mk: Don't set HOSTEXEEXT to .exe for Ubuntu on Windows

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-nuttx] 01/01: tools/Config.mk: Don't set HOSTEXEEXT to .exe for Ubuntu on Windows

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch wsl
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 86c6afe9a5998e2eba98fa0944e5e29de7027171
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Wed Oct 14 11:01:39 2020 +0800

    tools/Config.mk: Don't set HOSTEXEEXT to .exe for Ubuntu on Windows
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 tools/Config.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/Config.mk b/tools/Config.mk
index b6a36c2..2edcf11 100644
--- a/tools/Config.mk
+++ b/tools/Config.mk
@@ -114,8 +114,10 @@ ifeq ($(HOSTOS),Cygwin)
 endif
 
 ifeq ($(CONFIG_HOST_WINDOWS),y)
+ifneq ($(CONFIG_WINDOWS_UBUNTU),y)
   HOSTEXEEXT ?= .exe
 endif
+endif
 
 # This define is passed as EXTRAFLAGS for kernel-mode builds.  It is also passed
 # during PASS1 (but not PASS2) context and depend targets.