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/09/19 08:11:04 UTC

[incubator-nuttx-apps] branch master updated: make/import: lost ARCHCPUFLAGS in cxx command line

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1b9c307  make/import: lost ARCHCPUFLAGS in cxx command line
1b9c307 is described below

commit 1b9c307ecc04dca48f1858fbd3607306b7bf8fd4
Author: chao.an <an...@xiaomi.com>
AuthorDate: Thu Jul 16 11:02:29 2020 +0800

    make/import: lost ARCHCPUFLAGS in cxx command line
    
    Change-Id: I90ba64852b9d06ad713a4696c451f72029da1cf3
    Signed-off-by: chao.an <an...@xiaomi.com>
---
 import/Make.defs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/import/Make.defs b/import/Make.defs
index aff19c9..38cfd15 100644
--- a/import/Make.defs
+++ b/import/Make.defs
@@ -58,7 +58,7 @@ ARCHCXXFLAGS += -fno-common -pipe
 CFLAGS = $(ARCHCFLAGS) $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES)
 CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
 
-CXXFLAGS = $(ARCHCXXFLAGS) $(ARCHWARNINGSXX) $(ARCHOPTIMIZATION) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES)
+CXXFLAGS = $(ARCHCXXFLAGS) $(ARCHWARNINGSXX) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES)
 CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
 
 ifeq ($(LDSTARTGROUP),)