mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 15:02:58 +00:00
1811 dont override users cc and cpp env for data products (#1819)
* Don't override the CC and C++ environment variables Fixes an issue where some makefiles override the user's CC and C++ environment variables. * Restore test makefiles * Test to change from CC = cc to CC = gcc for only needed files. * Restore the whitespaces to their original state before the update in order to show the necessary file changes for the PR. --------- Co-authored-by: Nino Tarantino <antonio.tarantino@nasa.gov>
This commit is contained in:
parent
80063bf498
commit
0695391bac
@ -2,7 +2,7 @@
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
DPX_DIR = ../..
|
||||
|
@ -2,7 +2,7 @@
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
DPX_DIR = ../..
|
||||
|
@ -2,7 +2,7 @@
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
DPX_DIR = ..
|
||||
|
@ -2,7 +2,7 @@
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
DPX_DIR = ..
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
CC = cc
|
||||
CC = gcc
|
||||
|
||||
OBJ_DIR = object_${TRICK_HOST_CPU}
|
||||
LIBDIR = ../lib_${TRICK_HOST_CPU}
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
ifndef TRICK_HOST_CPU
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
|
||||
CFLAGS = -g -Wall -std=c++11 ${TRICK_CXXFLAGS}
|
||||
|
@ -1,7 +1,7 @@
|
||||
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
||||
|
||||
RM = rm -rf
|
||||
CC = cc
|
||||
CC = gcc
|
||||
CPP = c++
|
||||
CURL = curl
|
||||
MV = mv
|
||||
|
Loading…
Reference in New Issue
Block a user