File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
- 4
1
+ 5
Original file line number Diff line number Diff line change 141
141
#define NO_ADDRESS_SAFETY_ANALYSIS (x ) __attribute__ ((__no_address_safety_analysis__)) x
142
142
#define WARN_UNUSED_RESULT (x ) __attribute__ ((__warn_unused_result__)) x
143
143
#define MAYBE_UNUSED (x ) __attribute__ ((__unused__)) x
144
+ #define ERRORFUNC (mesg ,x ) __attribute__ ((__error__ mesg)) x
145
+ #define WARNINGFUNC (mesg ,x ) __attribute__ ((__warning__ mesg)) x
144
146
#define WEAK (x ) __attribute__ ((__weak__)) x
145
147
#define HAVE_FUNC_WEAK 1
146
148
#define RUBY_CXX_DEPRECATED (msg ) __attribute__((__deprecated__(msg)))
Original file line number Diff line number Diff line change 142
142
#define NO_ADDRESS_SAFETY_ANALYSIS (x ) __attribute__ ((__no_address_safety_analysis__)) x
143
143
#define WARN_UNUSED_RESULT (x ) __attribute__ ((__warn_unused_result__)) x
144
144
#define MAYBE_UNUSED (x ) __attribute__ ((__unused__)) x
145
+ #define ERRORFUNC (mesg ,x ) __attribute__ ((__error__ mesg)) x
146
+ #define WARNINGFUNC (mesg ,x ) __attribute__ ((__warning__ mesg)) x
145
147
#define WEAK (x ) __attribute__ ((__weak__)) x
146
148
#define HAVE_FUNC_WEAK 1
147
149
#define RUBY_CXX_DEPRECATED (msg ) __attribute__((__deprecated__(msg)))
Original file line number Diff line number Diff line change 7
7
{
8
8
"name" : "regex" ,
9
9
"subdir" : True ,
10
- "version" : "3487e6705a86e77e123e813f6f31b3e24232df4b " ,
10
+ "version" : "abe6520dcfe30cc36c28ebf843cb3f5fcbe4e299 " ,
11
11
"urls" : [
12
12
{"url" : "https://github.com/oracle/graal.git" , "kind" : "git" },
13
13
{"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots" , "kind" : "binary" },
16
16
{
17
17
"name" : "sulong" ,
18
18
"subdir" : True ,
19
- "version" : "3487e6705a86e77e123e813f6f31b3e24232df4b " ,
19
+ "version" : "abe6520dcfe30cc36c28ebf843cb3f5fcbe4e299 " ,
20
20
"urls" : [
21
21
{"url" : "https://github.com/oracle/graal.git" , "kind" : "git" },
22
22
{"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots" , "kind" : "binary" },
Original file line number Diff line number Diff line change @@ -32,7 +32,10 @@ archive=$(basename "$url")
32
32
33
33
if [ ! -e " $archive " ]; then
34
34
curl -O " $url "
35
- tar xf " ruby-$VERSION .tar.gz"
35
+ fi
36
+
37
+ if [ ! -d " ruby-$VERSION " ]; then
38
+ tar xf " $archive "
36
39
fi
37
40
38
41
cd " ruby-$VERSION " || exit 1
You can’t perform that action at this time.
0 commit comments