HomeSort by: relevance | last modified time | path
    Searched refs:CXX (Results 1 - 25 of 288) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/
check_performance 30 COMPILER=`$flags_script --build-cxx`
35 CXX="$COMPILER $INCLUDES $FLAGS -std=gnu++11 $CXXFLAGS $LINK"
39 echo CXX is $CXX
47 ORIG_CXX="$CXX"
48 CXX="$CXX `sed -n 's/.* STD=/-std=/p' $TESTNAME`"
58 $CXX -DNOTHREAD -D$CYCLE $TESTNAME $LIBS -o $EXE_NAME
63 echo "$CXX -DNOTHREAD -D$CYCLE $TESTNAME $LIBS -o $EXE_NAME"
72 $CXX $THREAD_FLAG -D$CYCLE $TESTNAME $LIBS -o $EXE_NAM
    [all...]
check_compile 30 COMPILER=`$flags_script --build-cxx`
31 CXX="$COMPILER $INCLUDES $PCH_FLAGS $FLAGS -Wfatal-errors $TEST_FLAGS"
34 echo $CXX
47 $CXX $SRC_DIR/testsuite/$NAME -o $OUTPUT_NAME
testsuite_flags.in 17 --build-cxx
19 --install-cxx
44 --install-cxx)
45 CXX=${PREFIX_DIR}/bin/g++
46 echo ${CXX}
48 --build-cxx)
49 CXX_build="@CXX@"
50 CXX=`echo "$CXX_build" | sed 's,gcc/xgcc ,gcc/xg++ ,'`
51 echo ${CXX}
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
check_performance 30 COMPILER=`$flags_script --build-cxx`
35 CXX="$COMPILER $INCLUDES $FLAGS -std=gnu++11 $CXXFLAGS $LINK"
39 echo CXX is $CXX
47 ORIG_CXX="$CXX"
48 CXX="$CXX `sed -n 's/.* STD=/-std=/p' $TESTNAME`"
58 $CXX -DNOTHREAD -D$CYCLE $TESTNAME $LIBS -o $EXE_NAME
63 echo "$CXX -DNOTHREAD -D$CYCLE $TESTNAME $LIBS -o $EXE_NAME"
72 $CXX $THREAD_FLAG -D$CYCLE $TESTNAME $LIBS -o $EXE_NAM
    [all...]
check_compile 30 COMPILER=`$flags_script --build-cxx`
31 CXX="$COMPILER $INCLUDES $PCH_FLAGS $FLAGS -Wfatal-errors $TEST_FLAGS"
34 echo $CXX
47 $CXX $SRC_DIR/testsuite/$NAME -o $OUTPUT_NAME
testsuite_flags.in 17 --build-cxx
19 --install-cxx
44 --install-cxx)
45 CXX=${PREFIX_DIR}/bin/g++
46 echo ${CXX}
48 --build-cxx)
49 CXX_build="@CXX@"
50 CXX=`echo "$CXX_build" | sed 's,gcc/xgcc ,gcc/xg++ ,'`
51 echo ${CXX}
  /src/external/bsd/jemalloc/dist/scripts/freebsd/
before_script.sh 7 ./configure --with-jemalloc-prefix=ci_ ${COMPILER_FLAGS:+ CC="$CC $COMPILER_FLAGS" CXX="$CXX $COMPILER_FLAGS"} $CONFIGURE_FLAGS
  /src/external/apache2/llvm/dist/clang/tools/diag-build/
diag-build.sh 9 # you to manually specify "dry-run" and "use $CC and $CXX"; if there is a build
48 if [[ -z "$CXX" ]]; then
50 CXX=$(dirname $0)/clang++
52 CXX=$(which clang++)
54 CXX=$CC
77 set_compiler="CC='$CC' CXX='$CXX'"
80 set_compiler="CC='$CC' CXX='$CXX'"
84 # FIXME: We really only need $CC /or/ $CXX
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
build.sh 3 CXX="${CXX:-clang}"
5 $CXX -g -O2 -fno-omit-frame-pointer -std=c++11 $f -c &
  /src/external/gpl3/gdb/dist/gdb/
split-name.h 32 CXX,
  /src/external/gpl3/gdb.old/dist/gdb/
split-name.h 32 CXX,
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++26/
Makefile.am 66 # 1) In general, libtool expects an argument such as `--tag=CXX' when
75 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
84 # placed after --tag CXX lest things CXX undo the affect of
91 $(LIBTOOL) --tag CXX --tag disable-shared \
93 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
105 $(LIBTOOL) --tag CXX --tag disable-shared \
107 --mode=link $(CXX) \
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++20/
Makefile.am 62 # 1) In general, libtool expects an argument such as `--tag=CXX' when
71 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
80 # placed after --tag CXX lest things CXX undo the affect of
87 $(LIBTOOL) --tag CXX --tag disable-shared \
89 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
101 $(LIBTOOL) --tag CXX --tag disable-shared \
103 --mode=link $(CXX) \
  /src/external/bsd/unbound/dist/contrib/android/
setenv_android.sh 76 CXX="armv7a-linux-androideabi$ANDROID_API-clang++"
89 CXX="aarch64-linux-android$ANDROID_API-clang++"
102 CXX="i686-linux-android$ANDROID_API-clang++"
115 CXX="x86_64-linux-android$ANDROID_API-clang++"
141 if [ ! -e "$ANDROID_TOOLCHAIN/$CXX" ]; then
180 export CPP CC CXX LD AS AR RANLIB STRIP
192 echo "CXX: $(command -v "$CXX")"
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendOptions.cpp 21 .Case("ii", InputKind(Language::CXX).getPreprocessed())
27 .Cases("C", "cc", "cp", Language::CXX)
28 .Cases("cpp", "CPP", "c++", "cxx", "hpp", "hxx", Language::CXX)
29 .Case("cppm", Language::CXX)
30 .Case("iim", InputKind(Language::CXX).getPreprocessed())
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/
Makefile.am 72 # 1) In general, libtool expects an argument such as `--tag=CXX' when
81 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
90 # placed after --tag CXX lest things CXX undo the affect of
97 $(LIBTOOL) --tag CXX --tag disable-shared \
99 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
111 $(LIBTOOL) --tag CXX --tag disable-shared \
113 --mode=link $(CXX) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
Makefile.am 68 # 1) In general, libtool expects an argument such as `--tag=CXX' when
77 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
86 # placed after --tag CXX lest things CXX undo the affect of
93 $(LIBTOOL) --tag CXX --tag disable-shared \
95 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
107 $(LIBTOOL) --tag CXX --tag disable-shared \
109 --mode=link $(CXX) \
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
Makefile.am 64 # 1) In general, libtool expects an argument such as `--tag=CXX' when
73 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
82 # placed after --tag CXX lest things CXX undo the affect of
89 $(LIBTOOL) --tag CXX --tag disable-shared \
91 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
103 $(LIBTOOL) --tag CXX --tag disable-shared \
105 --mode=link $(CXX) \
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Attributes.h 27 CXX,
  /src/external/apache2/llvm/dist/libcxx/utils/ci/
oss-fuzz.sh 14 ${CXX} ${CXXFLAGS} \
18 -nostdinc++ -cxx-isystem libcxx/include \
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
Makefile.am 97 # 1) In general, libtool expects an argument such as `--tag=CXX' when
106 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
115 # placed after --tag CXX lest things CXX undo the affect of
122 $(LIBTOOL) --tag CXX --tag disable-shared \
124 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
136 $(LIBTOOL) --tag CXX --tag disable-shared \
138 --mode=link $(CXX) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++20/
Makefile.am 79 # 1) In general, libtool expects an argument such as `--tag=CXX' when
88 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
97 # placed after --tag CXX lest things CXX undo the affect of
104 $(LIBTOOL) --tag CXX --tag disable-shared \
106 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
118 $(LIBTOOL) --tag CXX --tag disable-shared \
120 --mode=link $(CXX) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/experimental/
Makefile.am 75 # 1) In general, libtool expects an argument such as `--tag=CXX' when
84 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
93 # placed after --tag CXX lest things CXX undo the affect of
100 $(LIBTOOL) --tag CXX --tag disable-shared \
102 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
114 $(LIBTOOL) --tag CXX --tag disable-shared \
116 --mode=link $(CXX) \
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
Makefile.am 93 # 1) In general, libtool expects an argument such as `--tag=CXX' when
102 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
111 # placed after --tag CXX lest things CXX undo the affect of
118 $(LIBTOOL) --tag CXX --tag disable-shared \
120 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
132 $(LIBTOOL) --tag CXX --tag disable-shared \
134 --mode=link $(CXX) \
  /src/external/mit/libcbor/dist/oss-fuzz/
build.sh 25 $CXX $CXXFLAGS -std=c++11 "-I$WORK/include" \

Completed in 32 milliseconds

1 2 3 4 5 6 7 8 91011>>