Changeset 81e60f7
- Timestamp:
- Sep 10, 2019, 5:03:23 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8209e70
- Parents:
- c2051e10
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
rc2051e10 r81e60f7 33 33 using std::to_string; 34 34 35 // #define __DEBUG_H__35 // #define __DEBUG_H__ 36 36 37 37 static string __CFA_FLAGPREFIX__( "__CFA_FLAG" ); // "N__=" suffix … … 345 345 346 346 if(disttree) { 347 Putenv( argv, "--prelude-dir=" + dir(argv[0]) ));347 Putenv( argv, "--prelude-dir=" + dir(argv[0]) ); 348 348 } else if(intree) { 349 Putenv( argv, "--prelude-dir=" + libdir + "/prelude" ));350 } else { 351 Putenv( argv, "--prelude-dir=" + libdir ));349 Putenv( argv, "--prelude-dir=" + libdir + "/prelude" ); 350 } else { 351 Putenv( argv, "--prelude-dir=" + libdir ); 352 352 } 353 nargs += 1; 353 354 354 for ( int i = 0; i < nlibs; i += 1 ) { // copy non-user libraries after all user libraries 355 355 args[nargs++] = libs[i]; … … 402 402 } // if 403 403 404 Putenv( argv, "--prelude-dir=" + libdir + (intree ? "/prelude" : "") );405 406 404 if ( debug ) { 407 405 heading += " (debug)"; … … 420 418 } 421 419 if ( bprefix[bprefix.length() - 1] != '/' ) bprefix += '/'; 422 Putenv( argv, ( *new string( string("-B=") + bprefix ) ).c_str());420 Putenv( argv, string("-B=") + bprefix ); 423 421 } // if 424 422 -
libcfa/Makefile.in
rc2051e10 r81e60f7 275 275 LIPO = @LIPO@ 276 276 LN_S = @LN_S@ 277 LOCAL_CC1 = @LOCAL_CC1@ 277 278 LOCAL_CFACC = @LOCAL_CFACC@ 278 279 LTLIBOBJS = @LTLIBOBJS@ -
libcfa/configure
rc2051e10 r81e60f7 709 709 PRELUDEFLAG 710 710 CFADIR_HASH 711 LOCAL_CC1 711 712 LOCAL_CFACC 712 713 CFACPP … … 2972 2973 CFACPP=${DRIVER_DIR}cfa-cpp 2973 2974 LOCAL_CFACC=${DRIVER_DIR}cfa 2975 LOCAL_CC1=${DRIVER_DIR}cc1 2974 2976 2975 2977 if test x$enable_distcc = xyes; then … … 2980 2982 ENABLE_DISTCC_FALSE= 2981 2983 fi 2984 2982 2985 2983 2986 -
libcfa/configure.ac
rc2051e10 r81e60f7 47 47 CFACPP=${DRIVER_DIR}cfa-cpp 48 48 LOCAL_CFACC=${DRIVER_DIR}cfa 49 LOCAL_CC1=${DRIVER_DIR}cc1 49 50 50 51 AM_CONDITIONAL([ENABLE_DISTCC], [test x$enable_distcc = xyes]) … … 53 54 AC_SUBST(CFACPP) 54 55 AC_SUBST(LOCAL_CFACC) 56 AC_SUBST(LOCAL_CC1) 55 57 AC_SUBST(CFADIR_HASH) 56 58 AC_SUBST(CFA_VERSION) -
libcfa/prelude/Makefile.am
rc2051e10 r81e60f7 70 70 71 71 if ENABLE_DISTCC 72 distribution: @LOCAL_CFACC@ @ CFACPP@ gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c $(srcdir)/../../tools/build/push2dist.sh72 distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c $(srcdir)/../../tools/build/push2dist.sh 73 73 ${AM_V_GEN}$(srcdir)/../../tools/build/push2dist.sh @CFADIR_HASH@ 74 74 @echo "Dummy file to track distribution to remote hosts" > ${@} -
libcfa/prelude/Makefile.in
rc2051e10 r81e60f7 218 218 LIPO = @LIPO@ 219 219 LN_S = @LN_S@ 220 LOCAL_CC1 = @LOCAL_CC1@ 220 221 LOCAL_CFACC = @LOCAL_CFACC@ 221 222 LTLIBOBJS = @LTLIBOBJS@ … … 570 571 rm -rf $(DEPDIR) 571 572 572 @ENABLE_DISTCC_TRUE@distribution: @LOCAL_CFACC@ @ CFACPP@ gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c $(srcdir)/../../tools/build/push2dist.sh573 @ENABLE_DISTCC_TRUE@distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ gcc-builtins.cf builtins.cf extras.cf prelude.cfa bootloader.c $(srcdir)/../../tools/build/push2dist.sh 573 574 @ENABLE_DISTCC_TRUE@ ${AM_V_GEN}$(srcdir)/../../tools/build/push2dist.sh @CFADIR_HASH@ 574 575 @ENABLE_DISTCC_TRUE@ @echo "Dummy file to track distribution to remote hosts" > ${@} -
libcfa/src/Makefile.in
rc2051e10 r81e60f7 328 328 LIPO = @LIPO@ 329 329 LN_S = @LN_S@ 330 LOCAL_CC1 = @LOCAL_CC1@ 330 331 LOCAL_CFACC = @LOCAL_CFACC@ 331 332 LTLIBOBJS = @LTLIBOBJS@
Note: See TracChangeset
for help on using the changeset viewer.