unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob bed63353a9ed4d267361dcb4741b33af2f18aaad 3396 bytes (raw)
name: gnu/packages/aux-files/guile-launcher.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
 
/* GNU Guix --- Functional package management for GNU
   Copyright 1996-1997,2000-2001,2006,2008,2011,2013,2018,2020,2021
      Free Software Foundation, Inc.
   Copyright (C) 2020 Ludovic Courtès <ludo@gnu.org>

   This file is part of GNU Guix.

   GNU Guix is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or (at
   your option) any later version.

   GNU Guix is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.  */

/* This file implements a variant of the 'guile' executable that does not
   complain about locale issues and arranges to reduce startup time by
   ignoring GUILE_LOAD_PATH and GUILE_LOAD_COMPILED_PATH until it has
   booted.  */

#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <libguile.h>

/* Saved values of GUILE_LOAD_PATH and GUILE_LOAD_COMPILED_PATH.  */
static const char *load_path, *load_compiled_path;

static void
inner_main (void *unused, int argc, char **argv)
{
  if (load_path != NULL)
    {
      setenv ("GUILE_LOAD_PATH", load_path, 1);
      SCM load_path_var =
	scm_c_public_lookup ("guile", "%load-path");
      SCM addition =
	scm_parse_path (scm_from_locale_string (load_path), SCM_EOL);
      scm_variable_set_x (load_path_var,
			  scm_append
			  (scm_list_2 (scm_variable_ref (load_path_var),
				       addition)));
    }

  if (load_compiled_path != NULL)
    {
      setenv ("GUILE_LOAD_COMPILED_PATH", load_compiled_path, 1);
      SCM load_compiled_path_var =
	scm_c_public_lookup ("guile", "%load-compiled-path");
      SCM addition =
	scm_parse_path (scm_from_locale_string (load_compiled_path), SCM_EOL);
      scm_variable_set_x (load_compiled_path_var,
			  scm_append
			  (scm_list_2 (scm_variable_ref (load_compiled_path_var),
				       addition)));
    }

  scm_shell (argc, argv);
}

int
main (int argc, char **argv)
{
  /* Try to install the current locale; remain silent if it fails.  */
  if (setlocale (LC_ALL, "") == NULL)
    /* The 'guix pull'-provided 'guix' includes at least en_US.utf8 so use
       that.  That gives us UTF-8 support for 'scm_to_locale_string', etc.,
       which is always preferable over the C locale.  */
    setlocale (LC_ALL, "en_US.utf8");

  /* Allow ./pre-inst-env to inject local paths. That way local sources
     are preferred for most operations.  */
  if (getenv ("GUIX_UNINSTALLED") == NULL)
    {
      const char *str;
      str = getenv ("GUILE_LOAD_PATH");
      load_path = str != NULL ? strdup (str) : NULL;
      str = getenv ("GUILE_LOAD_COMPILED_PATH");
      load_compiled_path = str ? strdup (str) : NULL;

      unsetenv ("GUILE_LOAD_PATH");
      unsetenv ("GUILE_LOAD_COMPILED_PATH");
    }

  /* XXX: Do not let GMP allocate via libgc as this can lead to memory
     corruption in GnuTLS/Nettle since Nettle also uses GMP:
     <https://issues.guix.gnu.org/46330>.  */
  scm_install_gmp_memory_functions = 0;

  scm_boot_guile (argc, argv, inner_main, 0);
  return 0; /* never reached */
}

debug log:

solving bed63353a9 ...
found bed63353a9 in https://yhetil.org/guix-patches/20210515095227.3245343-1-slyfox@gentoo.org/
found 47ba069de1 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 47ba069de110800a80ff6e4fa290c5a7a58b2f7b	gnu/packages/aux-files/guile-launcher.c

applying [1/1] https://yhetil.org/guix-patches/20210515095227.3245343-1-slyfox@gentoo.org/
diff --git a/gnu/packages/aux-files/guile-launcher.c b/gnu/packages/aux-files/guile-launcher.c
index 47ba069de1..bed63353a9 100644

Checking patch gnu/packages/aux-files/guile-launcher.c...
Applied patch gnu/packages/aux-files/guile-launcher.c cleanly.

index at:
100644 bed63353a9ed4d267361dcb4741b33af2f18aaad	gnu/packages/aux-files/guile-launcher.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).