Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Create a procedure that builds an early bootstrap package. The procedure will search each directory in MODULES and compile all of the '.scm' files.
Create a procedure that installs an early bootstrap package. The procedure will install all of the '.scm' and '.go' files in each of the directories in MODULES, and all the executable files in the SCRIPTS directory.
Create a procedure that configures an early bootstrap package. The procedure will search each directory in MODULES and configure all of the '.in' files with NAME and VERSION. It will then search the SCRIPTS directory and configure all of the '.in' files with the bootstrap Guile and its module and object directories.
Build from SOURCE to OUTPUTS, using INPUTS, and by running all of PHASES in order. Return #t if all the PHASES succeeded, #f otherwise.
Dump to PORT the contents of files in DIRECTORY that match FILE-REGEXP.
Build the given Go package, applying all of PHASES in order.
Read data from INPUT, replacing store references according to REPLACEMENT-TABLE, and writing the result to OUTPUT. REPLACEMENT-TABLE is a vhash that maps strings (original hashes) to bytevectors (replacement strings comprising the replacement hash, a dash, and a string).
Note: We use string keys to work around the fact that guile-2.0 hashes all bytevectors to the same value.
Copy DIRECTORY to OUTPUT, replacing strings according to MAPPING, a list of file name pairs.
Apply the grafts described by MAPPING on OLD-OUTPUTS, leading to NEW-OUTPUTS. MAPPING must be a list of file name pairs; OLD-OUTPUTS and NEW-OUTPUTS are lists of output name/file name pairs.
Return dynamic-link information for ELF as an <elf-dynamic-info> object, or #f if ELF lacks dynamic-link information.
Return two values: the list of absolute .so file names FILE depends on, recursively, and the list of .so file names that could not be found. File names are resolved by searching the RUNPATH of the file that NEEDs them.
This is similar to the info returned by the 'ldd' command.