Uh oh!
There was an error while loading. Please reload this page.
forked from ruby/ruby
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloadpath.c
More file actions
Latest commit
92 lines (78 loc) · 2.3 KB
/
Copy pathloadpath.c
File metadata and controls
92 lines (78 loc) · 2.3 KB
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
/**********************************************************************
loadpath.c -
$Author$
created at: Wed May 15 14:19:50 JST 2013
Copyright (C) 2013 Yukihiro Matsumoto
**********************************************************************/
#include"verconf.h"
#include"ruby/ruby.h"
/* Define RUBY_REVISION to avoid revision.h inclusion via version.h. */
#defineRUBY_REVISION 0
#include"version.h"
#ifndefRUBY_ARCH
#defineRUBY_ARCH RUBY_PLATFORM
#endif
#ifndefRUBY_SITEARCH
#defineRUBY_SITEARCH RUBY_ARCH
#endif
#ifdefRUBY_PLATFORM_CPU
#defineRUBY_THINARCH RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS
#endif
#ifndefRUBY_LIB_PREFIX
#ifndefRUBY_EXEC_PREFIX
#error RUBY_EXEC_PREFIX must be defined
#endif
#defineRUBY_LIB_PREFIX RUBY_EXEC_PREFIX"/lib/ruby"
#endif
#ifndefRUBY_SITE_LIB
#defineRUBY_SITE_LIB RUBY_LIB_PREFIX"/site_ruby"
#endif
#ifndefRUBY_VENDOR_LIB
#defineRUBY_VENDOR_LIB RUBY_LIB_PREFIX"/vendor_ruby"
#endif
typedefcharruby_lib_version_string[(int)sizeof(RUBY_LIB_VERSION) -2];
#ifndefRUBY_LIB
#defineRUBY_LIB RUBY_LIB_PREFIX "/"RUBY_LIB_VERSION
#endif
#defineRUBY_SITE_LIB2 RUBY_SITE_LIB "/"RUBY_LIB_VERSION
#defineRUBY_VENDOR_LIB2 RUBY_VENDOR_LIB "/"RUBY_LIB_VERSION
#ifndefRUBY_ARCH_LIB_FOR
#defineRUBY_ARCH_LIB_FOR(arch) RUBY_LIB "/"arch
#endif
#ifndefRUBY_SITE_ARCH_LIB_FOR
#defineRUBY_SITE_ARCH_LIB_FOR(arch) RUBY_SITE_LIB2 "/"arch
#endif
#ifndefRUBY_VENDOR_ARCH_LIB_FOR
#defineRUBY_VENDOR_ARCH_LIB_FOR(arch) RUBY_VENDOR_LIB2 "/"arch
#endif
#if !defined(LOAD_RELATIVE) || !LOAD_RELATIVE
constcharruby_exec_prefix[] =RUBY_EXEC_PREFIX;
#endif
constcharruby_initial_load_paths[] =
#ifndefNO_INITIAL_LOAD_PATH
#ifdefRUBY_SEARCH_PATH
RUBY_SEARCH_PATH"\0"
#endif
#ifndefNO_RUBY_SITE_LIB
RUBY_SITE_LIB2"\0"
#ifdefRUBY_THINARCH
RUBY_SITE_ARCH_LIB_FOR(RUBY_THINARCH) "\0"
#endif
RUBY_SITE_ARCH_LIB_FOR(RUBY_SITEARCH) "\0"
RUBY_SITE_LIB"\0"
#endif
#ifndefNO_RUBY_VENDOR_LIB
RUBY_VENDOR_LIB2"\0"
#ifdefRUBY_THINARCH
RUBY_VENDOR_ARCH_LIB_FOR(RUBY_THINARCH) "\0"
#endif
RUBY_VENDOR_ARCH_LIB_FOR(RUBY_SITEARCH) "\0"
RUBY_VENDOR_LIB"\0"
#endif
RUBY_LIB"\0"
#ifdefRUBY_THINARCH
RUBY_ARCH_LIB_FOR(RUBY_THINARCH) "\0"
#endif
RUBY_ARCH_LIB_FOR(RUBY_ARCH) "\0"
#endif
"";