| /openbmc/openbmc/meta-raspberrypi/recipes-multimedia/omxplayer/omxplayer/ |
| H A D | 0006-Prevent-ffmpeg-configure-compile-race-condition.patch | 4 Subject: [PATCH] Prevent ffmpeg configure/compile race condition 7 the configure stage is finished before the compile stage starts. 24 -all: configure compile 25 +all: compile 32 .PHONY : compile 33 -compile: 34 +compile: configure
|
| /openbmc/openbmc/poky/meta/recipes-support/boost/boost/ |
| H A D | 0001-dont-setup-compiler-flags-m32-m64.patch | 19 @@ -377,22 +377,6 @@ local rule compile-link-flags ( * ) 20 compile-link-flags <link>shared/<target-os>$(non-windows) : -fPIC ; 25 - compile-link-flags <target-os>aix/<address-model>32 : -maix32 ; 26 - compile-link-flags <target-os>aix/<address-model>64 : -maix64 ; 28 - compile-link-flags <target-os>hpux/<address-model>32 : -milp32 ; 29 - compile-link-flags <target-os>hpux/<address-model>64 : -mlp64 ; 32 - compile-link-flags <target-os>$(generic-os)/<architecture>s390x/<address-model>32 : -m31 ; 33 - compile-link-flags <target-os>$(generic-os)/<architecture>s390x/<address-model>64 : -m64 ; 35 - compile-link-flags <target-os>$(generic-os)/<architecture>$(arch)/<address-model>32 : -m32 ; 36 - compile-link-flags <target-os>$(generic-os)/<architecture>$(arch)/<address-model>64 : -m64 ;
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/jack/jack/ |
| H A D | 0002-Fix-all-DeprecationWarning-invalid-escape-sequence.patch | 46 -re_imp = re.compile('^(#)*?([^#=]*?)\ =\ (.*?)$', re.M) 47 +re_imp = re.compile(r'^(#)*?([^#=]*?)\ =\ (.*?)$', re.M) 72 -re_cond = re.compile('(?P<var>\w+)|(?P<or>\|)|(?P<and>&)') 73 +re_cond = re.compile(r'(?P<var>\w+)|(?P<or>\|)|(?P<and>&)') 74 re_novar = re.compile(r'^(SRC|TGT)\W+.*?$') 75 …reg_act = re.compile(r'(?P<backslash>\\)|(?P<dollar>\$\$)|(?P<subst>\$\{(?P<var>\w+)(?P<code>.*?)\… 85 -re_m4 = re.compile('@(\w+)@', re.M) 86 +re_m4 = re.compile(r'@(\w+)@', re.M) 107 @@ -75,13 +75,13 @@ re_lines = re.compile( 111 -re_mac = re.compile("^[a-zA-Z_]\w*") [all …]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | logparser.py | 19 test_regex['PASSED'] = re.compile(r"^PASS:(.+)") 20 test_regex['FAILED'] = re.compile(r"^FAIL:([^(]+)") 21 test_regex['SKIPPED'] = re.compile(r"^SKIP:(.+)") 24 section_regex['begin'] = re.compile(r"^BEGIN: .*/(.+)/ptest") 25 section_regex['end'] = re.compile(r"^END: .*/(.+)/ptest") 26 section_regex['duration'] = re.compile(r"^DURATION: (.+)") 27 section_regex['exitcode'] = re.compile(r"^ERROR: Exit status is (.+)") 28 section_regex['timeout'] = re.compile(r"^TIMEOUT: .*/(.+)/ptest") 161 test_regex['FAILED'] = re.compile(r"FAIL") 164 section_regex['test'] = re.compile(r"^Executing")
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/ |
| H A D | 0001-build-Pass-tag-CC-explictly-when-using-libtool.patch | 43 - \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 44 + \$(LIBTOOL) --tag=CC --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 50 - \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 51 + \$(LIBTOOL) --tag=CC --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 57 - \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 58 + \$(LIBTOOL) --tag=CC --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 66 - \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ 67 + \$(LIBTOOL) --tag=CC --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/daemontools/daemontools/ |
| H A D | cross-compile.patch | 5 1. never try to compile target binary by native gcc 18 This will be used to compile .c files. 30 @@ -165,7 +165,7 @@ hassgprm.h: choose compile hassgprm.h1 h 32 hasshsgr.h: chkshsgr choose compile hasshsgr.h1 hasshsgr.h2 load \ 38 haswaitp.h: choose compile haswaitp.h1 haswaitp.h2 load trywaitp.c 39 @@ -265,7 +265,7 @@ readproctitle.o: compile error.h readpro 46 scan_ulong.o: compile scan.h scan_ulong.c 47 ./compile scan_ulong.c
|
| /openbmc/openbmc/meta-arm/meta-arm/recipes-security/optee/optee-os/ |
| H A D | 0001-compile.mk-use-CFLAGS-from-environment.patch | 4 Subject: [PATCH 1/3] compile.mk: use CFLAGS from environment 22 mk/compile.mk | 3 ++- 27 diff --git a/mk/compile.mk b/mk/compile.mk 29 --- a/mk/compile.mk 30 +++ b/mk/compile.mk
|
| H A D | 0001-mk-compile.mk-remove-absolute-build-time-paths.patch | 4 Subject: [PATCH] mk/compile.mk: remove absolute build time paths 33 mk/compile.mk | 2 +- 38 diff --git a/mk/compile.mk b/mk/compile.mk 40 --- a/mk/compile.mk 41 +++ b/mk/compile.mk
|
| /openbmc/u-boot/tools/patman/ |
| H A D | checkpatch.py | 73 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)') 74 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)' 76 re_ok = re.compile('.*has no obvious style problems') 77 re_bad = re.compile('.*has style problems, please review') 78 re_error = re.compile('ERROR: (.*)') 79 re_warning = re.compile('WARNING: (.*)') 80 re_check = re.compile('CHECK: (.*)') 81 re_file = re.compile('#\d+: FILE: ([^:]*):(\d+):')
|
| H A D | patchstream.py | 17 re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' 21 re_allowed_after_test = re.compile('^Signed-off-by:') 24 re_signoff = re.compile('^Signed-off-by: *(.*)') 27 re_cover = re.compile('^Cover-letter:') 30 re_cover_cc = re.compile('^Cover-letter-cc: *(.*)') 33 re_series_tag = re.compile('^Series-([a-z-]*): *(.*)') 36 re_commit_tag = re.compile('^Commit-([a-z-]*): *(.*)') 39 re_tag = re.compile('^(Tested-by|Acked-by|Reviewed-by|Patch-cc): (.*)') 42 re_commit = re.compile('^commit ([0-9a-f]*)$') 45 re_space_before_tab = re.compile('^[+].* \t') [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
| H A D | ConfHandler.py | 20 __config_regexp__ = re.compile( r""" 44 __include_regexp__ = re.compile( r"include\s+(.+)" ) 45 __require_regexp__ = re.compile( r"require\s+(.+)" ) 46 __includeall_regexp__ = re.compile( r"include_all\s+(.+)" ) 47 __export_regexp__ = re.compile( r"export\s+([a-zA-Z0-9\-_+.${}/~]+)$" ) 48 __unset_regexp__ = re.compile( r"unset\s+([a-zA-Z0-9\-_+.${}/~]+)$" ) 49 __unset_flag_regexp__ = re.compile( r"unset\s+([a-zA-Z0-9\-_+.${}/~]+)\[([a-zA-Z0-9\-_+.][a-zA-Z0-9… 50 __addpylib_regexp__ = re.compile(r"addpylib\s+(.+)\s+(.+)" ) 51 __addfragments_regexp__ = re.compile(r"addfragments\s+(.+)\s+(.+)\s+(.+)" )
|
| H A D | BBHandler.py | 22 __func_start_regexp__ = re.compile(r"(((?P<py>python(?=(\s|\()))|(?P<fr>fakeroot(?=\s)))\s*)*(?P… 23 __inherit_regexp__ = re.compile(r"inherit\s+(.+)" ) 24 __inherit_def_regexp__ = re.compile(r"inherit_defer\s+(.+)" ) 25 __export_func_regexp__ = re.compile(r"EXPORT_FUNCTIONS\s+(.+)" ) 26 __addtask_regexp__ = re.compile(r"addtask\s+([^#\n]+)(?P<comment>#.*|.*?)") 27 __deltask_regexp__ = re.compile(r"deltask\s+([^#\n]+)(?P<comment>#.*|.*?)") 28 __addhandler_regexp__ = re.compile(r"addhandler\s+(.+)" ) 29 __def_regexp__ = re.compile(r"def\s+(\w+).*:" ) 30 __python_func_regexp__ = re.compile(r"(\s+.*)|(^$)|(^#)" ) 31 __python_tab_regexp__ = re.compile(r" *\t")
|
| /openbmc/openbmc/poky/meta/recipes-core/glib-2.0/files/ |
| H A D | 0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch | 13 gio/glib-compile-schemas.c | 13 ------------- 16 diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c 18 --- a/gio/glib-compile-schemas.c 19 +++ b/gio/glib-compile-schemas.c
|
| /openbmc/openbmc/poky/meta/recipes-support/db/db/ |
| H A D | 0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch | 6 This helps cross compile when tag inference via heuristics 25 -MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}" 28 -MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}" 31 +MAKEFILE_CC="\$(LIBTOOL) --tag=CC --mode=compile ${MAKEFILE_CC}" 34 +MAKEFILE_CXX="\$(LIBTOOL) --tag=CXX --mode=compile ${MAKEFILE_CXX}"
|
| /openbmc/openbmc/poky/meta/recipes-kernel/perf/perf/ |
| H A D | sort-pmuevents.py | 36 preamble_regex = re.compile( '^(.*?)^(struct|const struct|static struct|static const struct)', re.M… 39 struct_block_regex = re.compile(r'^(struct|const struct|static struct|static const struct).*?(\w+) … 40 field_regex = re.compile(r'{.*?},', re.MULTILINE | re.DOTALL ) 41 cpuid_regex = re.compile(r'\.cpuid = (.*?),', re.MULTILINE | re.DOTALL ) 42 name_regex = re.compile(r'\.name = (.*?),', re.MULTILINE | re.DOTALL )
|
| /openbmc/libpldm/scripts/ |
| H A D | pre-submit | 33 meson compile -C "$BUILD" 42 meson compile -C "$BUILD" 51 meson compile -C "$BUILD" 59 meson compile -C "$BUILD"
|
| H A D | run-ci | 33 meson compile -C "$BUILD" 42 meson compile -C "$BUILD" 51 meson compile -C "$BUILD" 59 meson compile -C "$BUILD"
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/ |
| H A D | python3-wheel_0.45.1.bb | 13 # This used to use the bootstrap install which didn't compile. Until we bump the 14 # tmpdir version we can't compile the native otherwise the sysroot unpack fails 15 INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode"
|
| H A D | python3-setuptools_80.8.0.bb | 19 python3-compile \ 53 # This used to use the bootstrap install which didn't compile. Until we bump the 54 # tmpdir version we can't compile the native otherwise the sysroot unpack fails 55 INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode"
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ctre/ |
| H A D | ctre_3.9.0.bb | 1 DESCRIPTION = "Fast compile-time regular expressions with support for matching/searching/capturing." 2 HOMEPAGE = "https://github.com/hanickadot/compile-time-regular-expressions" 7 SRC_URI = "git://github.com/hanickadot/compile-time-regular-expressions.git;protocol=https;branch=m…
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minifi-cpp/files/ |
| H A D | 0002-Fix-osspuuid-build.patch | 7 * Do not download osspuuid source during compile. 14 .../ossp-uuid/ossp-uuid-cross-compile-fix.patch | 13 +++++++++++++ 16 create mode 100644 thirdparty/ossp-uuid/ossp-uuid-cross-compile-fix.patch 26 + set(PATCH_FILE4 "${SOURCE_DIR}/thirdparty/ossp-uuid/ossp-uuid-cross-compile-fix.patch") 57 …-git a/thirdparty/ossp-uuid/ossp-uuid-cross-compile-fix.patch b/thirdparty/ossp-uuid/ossp-uuid-cro… 61 +++ b/thirdparty/ossp-uuid/ossp-uuid-cross-compile-fix.patch
|
| /openbmc/openbmc/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys.py | 140 proj_re = re.compile(r'project\s*\(([^)]*)\)', re.IGNORECASE) 141 …pkgcm_re = re.compile(r'pkg_check_modules\s*\(\s*[a-zA-Z0-9-_]+\s*(REQUIRED)?\s+([^)\s]+)\s*\)', r… 142 …pkgsm_re = re.compile(r'pkg_search_module\s*\(\s*[a-zA-Z0-9-_]+\s*(REQUIRED)?((\s+[^)\s]+)+)\s*\)'… 143 findpackage_re = re.compile(r'find_package\s*\(\s*([a-zA-Z0-9-_]+)\s*.*', re.IGNORECASE) 144 …findlibrary_re = re.compile(r'find_library\s*\(\s*[a-zA-Z0-9-_]+\s*(NAMES\s+)?([a-zA-Z0-9-_ ]+)\s*… 145 checklib_re = re.compile(r'check_library_exists\s*\(\s*([^\s)]+)\s*.*', re.IGNORECASE) 146 include_re = re.compile(r'include\s*\(\s*([^)\s]*)\s*\)', re.IGNORECASE) 147 subdir_re = re.compile(r'add_subdirectory\s*\(\s*([^)\s]*)\s*([^)\s]*)\s*\)', re.IGNORECASE) 148 dep_re = re.compile(r'([^ ><=]+)( *[<>=]+ *[^ ><=]+)?') 426 pkg_re = re.compile(r'PKG_CHECK_MODULES\(\s*\[?[a-zA-Z0-9_]*\]?,\s*\[?([^,\]]*)\]?[),].*') [all …]
|
| /openbmc/bmcweb/docs/ |
| H A D | HEADERS.md | 14 files and almost no implementation compile units. A large amount of the compile 19 to separate compile units, making no other changes. This has been proposed and 27 making total compilation slower, not faster, as the slowest-to-compile parts end 31 To actually effect the result that we'd like to see from multiple compile units, 43 same author as boost::beast, claims to have significant reduction in compile 51 size the most, and ensure that those were all in the same compile unit, such
|
| /openbmc/openbmc/poky/meta/recipes-support/numactl/numactl/ |
| H A D | 0001-define-run-test-target.patch | 8 test target not only compile the test files, but also run them, which is 9 not suitable for cross-compile environment, so rename it as run-test. 11 and define test target to compile the test files.
|
| /openbmc/u-boot/test/py/ |
| H A D | u_boot_console_base.py | 19 pattern_u_boot_spl_signon = re.compile('(U-Boot SPL \\d{4}\\.\\d{2}[^\r\n]*\\))') 20 pattern_u_boot_main_signon = re.compile('(U-Boot \\d{4}\\.\\d{2}[^\r\n]*\\))') 21 pattern_stop_autoboot_prompt = re.compile('Hit any key to stop autoboot: ') 22 pattern_unknown_command = re.compile('Unknown command \'.*\' - try \'help\'') 23 pattern_error_notification = re.compile('## Error: ') 24 pattern_error_please_reset = re.compile('### ERROR ### Please RESET the board ###') 108 self.prompt_compiled = re.compile('^' + re.escape(self.prompt), re.MULTILINE)
|