Home
last modified time | relevance | path

Searched refs:compiler (Results 1 – 25 of 705) sorted by relevance

12345678910>>...29

/openbmc/openbmc/poky/meta/recipes-devtools/rust/files/
H A Dtarget-build-value.patch14 // running compiler in stage 2 when plugins run.
15 let stage_id = if suite == "ui-fulldeps" && compiler.stage == 1 {
16 - compiler = builder.compiler(compiler.stage - 1, target);
17 - format!("stage{}-{}", compiler.stage + 1, target)
18 + // At stage 0 (stage - 1) we are using the beta compiler. Using `self.target` can lead…
19 + // an incorrect compiler path on cross-targets, as the stage 0 beta compiler is always…
22 + compiler = builder.compiler(compiler.stage - 1, build);
23 + format!("stage{}-{}", compiler.stage + 1, build)
25 format!("stage{}-{}", compiler.stage, target)
H A Dhardcodepaths.patch9 diff --git a/compiler/rustc_codegen_llvm/src/context.rs b/compiler/rustc_codegen_llvm/src/context.rs
11 --- a/compiler/rustc_codegen_llvm/src/context.rs
12 +++ b/compiler/rustc_codegen_llvm/src/context.rs
30 - // this compiler is configured against a custom LLVM, we may have a
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/fwts/fwts/
H A D0001-libfwtsiasl-Disable-parallel-builds-of-lex-bison-fil.patch30 ${LEX} ${AM_LFLAGS} -PAslCompiler -o$@ $(top_srcdir)/src/acpica/source/compiler/aslcompiler.l
42 …rser.y.h: $(top_srcdir)/src/acpica/source/compiler/dtcompilerparser.l $(top_srcdir)/src/acpica/sou…
44 …} -bdtcompilerparser -pDtCompilerParser $(top_srcdir)/src/acpica/source/compiler/dtcompilerparser.y
47 …rparser.y.h --output=dtcompilerparser.c $(top_srcdir)/src/acpica/source/compiler/dtcompilerparser.y
51 …dtparser.y.h: $(top_srcdir)/src/acpica/source/compiler/dtparser.l $(top_srcdir)/src/acpica/source/
53 - ${YACC} ${AM_YFLAGS} -bdtparser -pDtParser $(top_srcdir)/src/acpica/source/compiler/dtparser.y
56 …arser --header=dtparser.y.h --output=dtparser.c $(top_srcdir)/src/acpica/source/compiler/dtparser.y
60 …prparser.y.h: $(top_srcdir)/src/acpica/source/compiler/prparser.l $(top_srcdir)/src/acpica/source/
62 - ${YACC} ${AM_YFLAGS} -bprparser -pPrParser $(top_srcdir)/src/acpica/source/compiler/prparser.y
65 …arser --header=prparser.y.h --output=prparser.c $(top_srcdir)/src/acpica/source/compiler/prparser.y
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libnet/libnet-libidn-perl-0.12/
H A Dlibidn-wr-cross-compile.patch5 Add support for cross-compile allowing the compiler binary to be
17 +my $compiler;
27 + "compiler=s" => \$compiler
36 + foreach my $cc ($compiler, qw/cc gcc/)
42 + if ($compiler == $cc)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pidgin/libgnt/
H A D0001-meson-import-changes-from-3.0.-version.patch20 @@ -53,9 +53,9 @@ compiler = meson.get_compiler('c')
47 - compiler.find_library('ncursesw', required : false),
48 - compiler.find_library('panelw', required : false),
49 - compiler.find_library('tinfow', required : false),
70 + if compiler.has_header_symbol(f, 'get_wch',
92 + compiler.find_library('panelw', required : false)
97 if compiler.has_header_symbol(f, 'get_wch',
128 - compiler.find_library('ncurses', required : false),
129 - compiler.find_library('panel', required : false),
130 - compiler.find_library('tinfo', required : false),
[all …]
/openbmc/u-boot/scripts/
H A Dgcc-version.sh17 compiler="$*"
25 MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1)
26 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
28 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -xc - | tail -n 1)
/openbmc/openbmc/poky/meta/recipes-graphics/shaderc/files/
H A D0002-libshaderc_util-fix-glslang-header-file-location.patch10 libshaderc_util/src/compiler.cc | 2 +-
13 diff --git a/libshaderc_util/src/compiler.cc b/libshaderc_util/src/compiler.cc
15 --- a/libshaderc_util/src/compiler.cc
16 +++ b/libshaderc_util/src/compiler.cc
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A D0001-Tell-scons-to-use-build-settings-from-environment-va.patch31 - help='Select the C compiler to use')
32 + help='Select the C compiler to use',
36 help='Sets flags for the C and C++ compiler',
41 - help='Select the C++ compiler to use')
42 + help='Select the C++ compiler to use',
46 help='Sets flags for the C++ compiler',
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/flatbuffers/
H A Dflatbuffers.bb9 PACKAGE_BEFORE_PN = "${PN}-compiler"
13 RDEPENDS:${PN}-compiler = "${PN}"
14 RDEPENDS:${PN}-dev += "${PN}-compiler"
26 FILES:${PN}-compiler = "${bindir}"
/openbmc/linux/tools/memory-model/Documentation/
H A Dcontrol-dependencies.txt6 help you prevent your compiler from breaking your code. However,
9 your own code, even in the absence of help from your compiler.
41 WRITE_ONCE() are optional. Without the READ_ONCE(), the compiler might
44 the compiler might convert the store into a load and a check followed
45 by a store, and this compiler-generated load would not be ordered by
56 In particular, although READ_ONCE() does force the compiler to emit a
90 assembly code, after all of the compiler and link-time optimizations
132 If MAX is compile-time defined to be 1, then the compiler knows that
179 does force the compiler to emit code for a given load, the compiler is
195 compiler cannot reorder volatile accesses and also cannot reorder
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dutils.py421 compiler = d.getVar("BUILD_CC")
423 if compiler.startswith('ccache '):
424 compiler = compiler[7:]
430 output = subprocess.check_output("%s --version" % compiler, \
437 bb.fatal("Can't get compiler version from %s --version output" % compiler)
440 return compiler, version
449 compiler = d.getVar("BUILD_CC")
451 if compiler.startswith('ccache '):
452 compiler = compiler[7:]
456 output = subprocess.check_output("%s --version" % compiler, \
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/protobuf/
H A Dprotobuf-c_1.5.0.bb31 PACKAGE_BEFORE_PN = "${PN}-compiler"
33 FILES:${PN}-compiler = "${bindir}"
35 RDEPENDS:${PN}-compiler = "protobuf-compiler"
36 RDEPENDS:${PN}-dev += "${PN}-compiler"
H A Dprotobuf_4.25.3.bb27 PACKAGECONFIG:class-native ?= "compiler"
28 PACKAGECONFIG:class-nativesdk ?= "compiler"
30 PACKAGECONFIG[compiler] = "-Dprotobuf_BUILD_PROTOC_BINARIES=ON,-Dprotobuf_BUILD_PROTOC_BINARIES=OFF"
99 PACKAGE_BEFORE_PN = "${PN}-compiler ${PN}-lite"
101 FILES:${PN}-compiler = "${bindir} ${libdir}/libprotoc${SOLIBS}"
107 RDEPENDS:${PN}-compiler = "${PN}"
108 RDEPENDS:${PN}-dev += "${PN}-compiler"
/openbmc/linux/scripts/coccinelle/misc/
H A Duninitialized_var.cocci7 /// For any compiler warnings about uninitialized variables, just add
10 /// compiler warnings (e.g. "unused variable"). If the compiler thinks it
11 /// is uninitialized, either simply initialize the variable or make compiler
13 /// obviously redundant, the compiler's dead-store elimination pass will make
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/files/
H A D0001-Revert-meson-do-not-pull-in-clc-for-clover.patch17 src/compiler/meson.build | 2 +-
41 diff --git a/src/compiler/meson.build b/src/compiler/meson.build
43 --- a/src/compiler/meson.build
44 +++ b/src/compiler/meson.build
/openbmc/linux/Documentation/RCU/
H A Drcu_dereference.rst29 for an example where the compiler can in fact deduce the exact
39 The compiler simply knows too much about integral values to
119 compiler knows that the pointer is NULL, you had better
121 non-equal, the compiler is none the wiser. Therefore,
126 Since there are no subsequent dereferences, the compiler
184 - The pointers are not equal *and* the compiler does
189 However, please note that if the compiler knows that the
192 compiler needs to deduce the value of the pointer.
251 /* The compiler decides that q->c is same as p->c. */
313 /* The compiler decides that q->c is same as p->c. */
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/capnproto/
H A Dcapnproto_1.0.2.bb23 FILES:${PN}-compiler = "${bindir}"
25 PACKAGE_BEFORE_PN = "${PN}-compiler"
26 RDEPENDS:${PN}-dev += "${PN}-compiler"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs/
H A D0004-v8-don-t-override-ARM-CFLAGS.patch14 Causing the latter to override the former, and compiler warnings:
39 - # Host built with an Arm CXX compiler.
64 # Host not built with an Arm CXX compiler (simulator build).
72 - # Target built with an Arm CXX compiler.
97 # Target not built with an Arm CXX compiler (simulator build).
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/grpc/
H A Dgrpc_1.60.1.bb13 PACKAGE_BEFORE_PN = "${PN}-compiler"
15 RDEPENDS:${PN}-compiler = "${PN}"
16 RDEPENDS:${PN}-dev:append:class-native = " ${PN}-compiler"
20 # RDEPENDS:${PN}-dev += "${PN}-compiler"
64 FILES:${PN}-compiler += " \
/openbmc/linux/scripts/
H A DKconfig.include27 # Return y if the compiler supports <flag>, n otherwise
39 $(error-if,$(failure,command -v $(CC)),C compiler '$(CC)' not found)
42 # Get the C compiler name, version, and error out if it is not supported.
44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.)
61 # $(m32-flag): -m32 if the compiler supports it, or an empty string otherwise.
62 # $(m64-flag): -m64 if the compiler supports it, or an empty string otherwise.
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/iozone3/iozone3/
H A Dparallelism.patch23 # GNU 'C' compiler Linux build with threads, largefiles, async I/O
32 # GNU 'C' compiler Linux build for powerpc chip with threads, largefiles, async I/O
41 # GNU 'C' compiler Linux build for sparc chip with threads, largefiles, async I/O
50 # GNU 'C' compiler Linux build with threads, largefiles, async I/O
59 # GNU 'C' compiler Linux build for powerpc chip with threads, largefiles, async I/O
68 # GNU 'C' compiler Linux build with threads, largefiles, async I/O
77 # GNU 'C' compiler Linux build with threads, largefiles, async I/O
86 # GNU 'C' compiler Linux build with S/390, threads, largfiles, async I/O
95 # GNU 'C' compiler Linux build with S/390, threads, largfiles, async I/O
/openbmc/openbmc/poky/meta-selftest/recipes-test/poison/
H A Dpoison.bb9 # will result in compiler errors. This recipe should will fail to build and
14 bbnote Testing C compiler
16 bbnote Testing C++ compiler
/openbmc/linux/include/linux/
H A Dcompiler_types.h461 #define __diag_ignore(compiler, version, option, comment) \ argument
462 __diag_ ## compiler(version, ignore, option)
463 #define __diag_warn(compiler, version, option, comment) \ argument
464 __diag_ ## compiler(version, warn, option)
465 #define __diag_error(compiler, version, option, comment) \ argument
466 __diag_ ## compiler(version, error, option)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/p7zip/files/
H A Ddo_not_override_compiler_and_do_not_strip.patch4 Subject: [PATCH] do not override compiler and do not strip
6 The default makefile sets the compiler to g++ or gcc. This leads to a wrong architecture when cross…
7 Remove the hardcoded compiler and just append the flags to CXX and CC.
/openbmc/openbmc/poky/meta/recipes-support/libical/libical/
H A D0001-cmake-Do-not-export-CC-into-gir-compiler.patch4 Subject: [PATCH] cmake: Do not export CC into gir compiler
6 this helps cross compilers where full compiler commandline defines the
7 compiler rather than just CC variable, therefore let it use the default

12345678910>>...29