Server IP : 172.67.216.182 / Your IP : 162.158.189.100 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-143-generic/scripts/kconfig/tests/preprocess/escape/ |
Upload File : |
# SPDX-License-Identifier: GPL-2.0 # Shorthand warning = $(warning-if,y,$(1)) # You can not pass commas directly to a function since they are treated as # delimiters. You can use the following trick to do so. comma := , $(warning,hello$(comma) world) # Like Make, single quotes, double quotes, spaces are treated verbatim. # The following prints the text as-is. $(warning, ' " '" ' ''' "'") # Unlike Make, '$' has special meaning only when it is followed by '('. # No need to escape '$' itself. $(warning,$) $(warning,$$) $ := 1 $(warning,$($)) # You need a trick to escape '$' followed by '(' # The following should print "$(X)". It should not be expanded further. dollar := $ $(warning,$(dollar)(X)) # You need a trick to treat unbalanced parentheses. # The following should print "(". left_paren := ( $(warning,$(left_paren)) # A simple expanded should not be expanded multiple times. # The following should print "$(X)". It should not be expanded further. Y := $(dollar)(X) $(warning,$(Y)) # The following should print "$(X)" as well. Y = $(dollar)(X) $(warning,$(Y)) # The following should print "$(". # It should not be emit "unterminated reference" error. unterminated := $(dollar)( $(warning,$(unterminated))