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 2021/06/14 15:53:53 UTC

[incubator-nuttx] branch master updated: sim: Use cc as linker, which usually aliases to either GCC or Clang

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.git


The following commit(s) were added to refs/heads/master by this push:
     new ba1f730  sim: Use cc as linker, which usually aliases to either GCC or Clang
ba1f730 is described below

commit ba1f730528b54fd743db6b8f048f9a500ff58e2f
Author: Gustavo Henrique Nihei <gu...@espressif.com>
AuthorDate: Mon Jun 14 11:33:30 2021 -0300

    sim: Use cc as linker, which usually aliases to either GCC or Clang
---
 boards/sim/sim/sim/scripts/Make.defs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/sim/sim/sim/scripts/Make.defs b/boards/sim/sim/sim/scripts/Make.defs
index 067914a..7bb2618 100644
--- a/boards/sim/sim/sim/scripts/Make.defs
+++ b/boards/sim/sim/sim/scripts/Make.defs
@@ -83,7 +83,7 @@ endif
 CC = $(CROSSDEV)cc
 CXX = $(CROSSDEV)c++
 CPP = $(CROSSDEV)cc -E -P -x c
-LD = $(CROSSDEV)gcc
+LD = $(CROSSDEV)cc
 ifeq ($(CONFIG_HOST_MACOS),y)
 STRIP = $(CROSSDEV)strip
 AR = $(TOPDIR)/tools/macar-rcs.sh