![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/boost-build/src/build/ |
Upload File : |
# Copyright 2012 Steven Watanabe # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) import modules ; import errors ; import regex ; import path ; import project ; import os ; rule get ( name ) { return $(.vars.$(name)) ; } rule set ( name : value * ) { .all-vars += $(name) ; .vars.$(name) = $(value) ; } rule save ( ) { if $(.cache-file) { local cache-file-native = [ path.native $(.cache-file) ] ; local target = <new-cache-file>$(cache-file-native) ; local contents = "# Automatically generated by Boost.Build.\n# Do not edit.\n\nmodule config-cache {\n" ; for local var in $(.all-vars) { local transformed ; for local value in $(.vars.$(var)) { transformed += [ regex.escape $(value) : \"\\ : \\ ] ; } local quoted = \"$(transformed)\" ; contents += " set \"$(var)\" : $(quoted:J= ) ;\n" ; } contents += "}\n" ; FILE_CONTENTS on $(target) = $(contents) ; ALWAYS $(target) ; config-cache.write $(target) ; UPDATE_NOW $(target) : [ modules.peek configure : .log-fd ] : ignore-minus-n ; import common ; common.Clean clean-all : $(target) ; } } actions write { @($(STDOUT):E=$(FILE_CONTENTS:J=)) > "$(<)" } if [ os.name ] = VMS { actions write { @($(STDOUT):E=$(FILE_CONTENTS:J=)) | TYPE SYS$INPUT /OUT=$(<:W) } } rule load ( cache-file ) { if $(.cache-file) { errors.error duplicate load of cache file ; } cache-file = [ path.native $(cache-file) ] ; if [ path.exists $(cache-file) ] && ! ( --reconfigure in [ modules.peek : ARGV ] ) { FILE_CONTENTS on <old-cache-file>$(cache-file) = "" ; config-cache.write <old-cache-file>$(cache-file) ; UPDATE_NOW <old-cache-file>$(cache-file) : [ modules.peek configure : .log-fd ] ; include <old-cache-file>$(cache-file) ; } .cache-file = $(cache-file) ; }