raygun-apm 1.0.72-x86-linux → 1.0.73-x86-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/raygun/extconf.rb +7 -0
- data/lib/raygun/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- data/lib/raygun/2.7/raygun_ext.so +0 -0
- data/lib/raygun/apm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40b3fe837f5c59b4c834e357f52734a1617a86765f46c0e8e187f4314453a3b8
|
4
|
+
data.tar.gz: d05d2ccf8ac118f163159e40f91c101e7b9cd75c2c8d84366b89ab1af994167e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a31bdce2daee2b21f88b7a0bc545aa8fdf831499eb43168849b1153dcf7a097ffcc897b7861c16f1548c28b526ae2202cceebc8c1e042274942004ff4e3002a5
|
7
|
+
data.tar.gz: d8a3db9078d59ba9f859c32cb9e5cd9c8e8ad1f0ba3491b88eebdb20f58eb109d5879c0c696b9bff000342656e08a871db3a703794e60699b67c3122077bb1af
|
data/ext/raygun/extconf.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
|
+
# Makefile generator helper - from standard library
|
3
4
|
require 'mkmf'
|
5
|
+
# References core headers extracted by Ruby minor version in https://github.com/os97673/debase-ruby_core_source . Required for some of the lower level profiler features
|
4
6
|
require 'debase/ruby_core_source'
|
5
7
|
|
6
8
|
headers = proc do
|
@@ -11,12 +13,15 @@ end
|
|
11
13
|
|
12
14
|
dir_config('raygun')
|
13
15
|
|
16
|
+
# To allow for swapping out the compiler - clang in favour of gcc for example
|
14
17
|
RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
|
15
18
|
|
19
|
+
# Pendatic about all the things
|
16
20
|
append_cflags '-pedantic'
|
17
21
|
append_cflags '-Wall'
|
18
22
|
append_cflags '-Werror=switch'
|
19
23
|
append_cflags '-std=c99'
|
24
|
+
# Enables additional flags, stack protection and debug symbols
|
20
25
|
if ENV['DEBUG']
|
21
26
|
have_library 'ssp'
|
22
27
|
have_func '__stack_chk_guard'
|
@@ -33,6 +38,7 @@ else
|
|
33
38
|
append_cflags '-O3'
|
34
39
|
end
|
35
40
|
|
41
|
+
# Renders an ASCII presentation of the shadow stack at runtime
|
36
42
|
if ENV['DEBUG_SHADOW_STACK']
|
37
43
|
append_cflags '-DRB_RG_DEBUG_SHADOW_STACK'
|
38
44
|
end
|
@@ -42,6 +48,7 @@ unless create_header
|
|
42
48
|
exit(1)
|
43
49
|
end
|
44
50
|
|
51
|
+
# Check for the presence of headers in ruby_core_headers for the version currently compiled for
|
45
52
|
unless Debase::RubyCoreSource.create_makefile_with_core(headers, 'raygun_ext')
|
46
53
|
STDERR.print("Makefile creation failed\n")
|
47
54
|
STDERR.print("One or more ruby headers not found\n")
|
Binary file
|
Binary file
|
Binary file
|
data/lib/raygun/apm/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raygun-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.73
|
5
5
|
platform: x86-linux
|
6
6
|
authors:
|
7
7
|
- Raygun
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-10-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: debase-ruby_core_source
|