-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from puppetlabs/release-prep
Release prep v0.0.2
- Loading branch information
Showing
57 changed files
with
10,959 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Empty file.
13 changes: 13 additions & 0 deletions
13
vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/json-2.6.3/gem_make.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
current directory: /home/runner/work/puppet-lint-check_unsafe_interpolations/puppet-lint-check_unsafe_interpolations/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json | ||
/opt/hostedtoolcache/Ruby/2.7.7/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.7.7/x64/lib/ruby/2.7.0 -r ./siteconf20221206-1722-1a7l1pa.rb extconf.rb | ||
creating Makefile | ||
|
||
current directory: /home/runner/work/puppet-lint-check_unsafe_interpolations/puppet-lint-check_unsafe_interpolations/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json | ||
make "DESTDIR=" clean | ||
|
||
current directory: /home/runner/work/puppet-lint-check_unsafe_interpolations/puppet-lint-check_unsafe_interpolations/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json | ||
make "DESTDIR=" | ||
make: Nothing to be done for 'all'. | ||
|
||
current directory: /home/runner/work/puppet-lint-check_unsafe_interpolations/puppet-lint-check_unsafe_interpolations/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json | ||
make "DESTDIR=" install |
Binary file added
BIN
+99.6 KB
vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/json-2.6.3/json/ext/generator.so
Binary file not shown.
Binary file added
BIN
+65.6 KB
vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/json-2.6.3/json/ext/parser.so
Binary file not shown.
120 changes: 120 additions & 0 deletions
120
vendor/bundle/ruby/2.7.0/extensions/x86_64-linux/2.7.0/json-2.6.3/mkmf.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
have_func: checking for rb_enc_raise() in ruby.h... -------------------- yes | ||
|
||
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0 -I. -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include -DENABLE_PATH_CHECK=0 -g -O2 -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -lruby -lm -lc" | ||
checked program was: | ||
/* begin */ | ||
1: #include "ruby.h" | ||
2: | ||
3: int main(int argc, char **argv) | ||
4: { | ||
5: return !!argv[argc]; | ||
6: } | ||
/* end */ | ||
|
||
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0 -I. -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include -DENABLE_PATH_CHECK=0 -g -O2 -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -lruby -lm -lc" | ||
conftest.c: In function ‘t’: | ||
conftest.c:16:57: error: ‘rb_enc_raise’ undeclared (first use in this function); did you mean ‘rb_exc_raise’? | ||
16 | int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_raise; return !p; } | ||
| ^~~~~~~~~~~~ | ||
| rb_exc_raise | ||
conftest.c:16:57: note: each undeclared identifier is reported only once for each function it appears in | ||
checked program was: | ||
/* begin */ | ||
1: #include "ruby.h" | ||
2: | ||
3: #include <ruby.h> | ||
4: | ||
5: /*top*/ | ||
6: extern int t(void); | ||
7: int main(int argc, char **argv) | ||
8: { | ||
9: if (argc > 1000000) { | ||
10: int (* volatile tp)(void)=(int (*)(void))&t; | ||
11: printf("%d", (*tp)()); | ||
12: } | ||
13: | ||
14: return !!argv[argc]; | ||
15: } | ||
16: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_raise; return !p; } | ||
/* end */ | ||
|
||
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0 -I. -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include -DENABLE_PATH_CHECK=0 -g -O2 -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -lruby -lm -lc" | ||
checked program was: | ||
/* begin */ | ||
1: #include "ruby.h" | ||
2: | ||
3: #include <ruby.h> | ||
4: | ||
5: /*top*/ | ||
6: extern int t(void); | ||
7: int main(int argc, char **argv) | ||
8: { | ||
9: if (argc > 1000000) { | ||
10: int (* volatile tp)(void)=(int (*)(void))&t; | ||
11: printf("%d", (*tp)()); | ||
12: } | ||
13: | ||
14: return !!argv[argc]; | ||
15: } | ||
16: extern void rb_enc_raise(); | ||
17: int t(void) { rb_enc_raise(); return 0; } | ||
/* end */ | ||
|
||
-------------------- | ||
|
||
have_func: checking for rb_enc_interned_str() in ruby.h... -------------------- no | ||
|
||
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0 -I. -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include -DENABLE_PATH_CHECK=0 -g -O2 -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -lruby -lm -lc" | ||
conftest.c: In function ‘t’: | ||
conftest.c:16:57: error: ‘rb_enc_interned_str’ undeclared (first use in this function); did you mean ‘rb_sym_interned_p’? | ||
16 | int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_interned_str; return !p; } | ||
| ^~~~~~~~~~~~~~~~~~~ | ||
| rb_sym_interned_p | ||
conftest.c:16:57: note: each undeclared identifier is reported only once for each function it appears in | ||
checked program was: | ||
/* begin */ | ||
1: #include "ruby.h" | ||
2: | ||
3: #include <ruby.h> | ||
4: | ||
5: /*top*/ | ||
6: extern int t(void); | ||
7: int main(int argc, char **argv) | ||
8: { | ||
9: if (argc > 1000000) { | ||
10: int (* volatile tp)(void)=(int (*)(void))&t; | ||
11: printf("%d", (*tp)()); | ||
12: } | ||
13: | ||
14: return !!argv[argc]; | ||
15: } | ||
16: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_interned_str; return !p; } | ||
/* end */ | ||
|
||
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include/ruby-2.7.0 -I. -I/opt/hostedtoolcache/Ruby/2.7.7/x64/include -DENABLE_PATH_CHECK=0 -g -O2 -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -L/opt/hostedtoolcache/Ruby/2.7.7/x64/lib -lruby -lm -lc" | ||
/usr/bin/ld: /tmp/cc6RUtBd.o: in function `t': | ||
/home/runner/work/puppet-lint-check_unsafe_interpolations/puppet-lint-check_unsafe_interpolations/vendor/bundle/ruby/2.7.0/gems/json-2.6.3/ext/json/ext/parser/conftest.c:17: undefined reference to `rb_enc_interned_str' | ||
collect2: error: ld returned 1 exit status | ||
checked program was: | ||
/* begin */ | ||
1: #include "ruby.h" | ||
2: | ||
3: #include <ruby.h> | ||
4: | ||
5: /*top*/ | ||
6: extern int t(void); | ||
7: int main(int argc, char **argv) | ||
8: { | ||
9: if (argc > 1000000) { | ||
10: int (* volatile tp)(void)=(int (*)(void))&t; | ||
11: printf("%d", (*tp)()); | ||
12: } | ||
13: | ||
14: return !!argv[argc]; | ||
15: } | ||
16: extern void rb_enc_interned_str(); | ||
17: int t(void) { rb_enc_interned_str(); return 0; } | ||
/* end */ | ||
|
||
-------------------- | ||
|
Oops, something went wrong.