raygun-apm 1.0.72-x86-linux → 1.0.73-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c96a6b7dbe697c06b96384f6d11a11e4aef3d99fa0bba721a2690a1d75b802aa
4
- data.tar.gz: 400346e2577847862053a9039b949d51caaccec19ff0fdfdfa7f50522655814b
3
+ metadata.gz: 40b3fe837f5c59b4c834e357f52734a1617a86765f46c0e8e187f4314453a3b8
4
+ data.tar.gz: d05d2ccf8ac118f163159e40f91c101e7b9cd75c2c8d84366b89ab1af994167e
5
5
  SHA512:
6
- metadata.gz: 330110ce91a1bb6069dfb84c1dc20ce4f269e3fa888b3913d9fb8a1c516f54382bdf7357be178760ddb590f3da8e65fd07701ad18b4991f466aa5b4f8dc04473
7
- data.tar.gz: 9bf675e6e27352c14d36bcf20fa707f11e3187d1519537aa724005c23bec3c54c3d36e524791a5a22482c583d6cf887fb860ad69711ac87267016cb70f2ff050
6
+ metadata.gz: a31bdce2daee2b21f88b7a0bc545aa8fdf831499eb43168849b1153dcf7a097ffcc897b7861c16f1548c28b526ae2202cceebc8c1e042274942004ff4e3002a5
7
+ data.tar.gz: d8a3db9078d59ba9f859c32cb9e5cd9c8e8ad1f0ba3491b88eebdb20f58eb109d5879c0c696b9bff000342656e08a871db3a703794e60699b67c3122077bb1af
@@ -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
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.72"
3
+ VERSION = "1.0.73"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  end
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.72
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-09-30 00:00:00.000000000 Z
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