Skip to content

Commit 8db9118

Browse files
committed
Fix build
1 parent 0b744a0 commit 8db9118

File tree

2 files changed

+31
-9
lines changed

2 files changed

+31
-9
lines changed

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main
@@ -29,6 +30,7 @@ jobs:
2930
matrix:
3031
os:
3132
- ubuntu-latest
33+
- ubuntu-20.04
3234
- windows-latest
3335

3436
sm_version:
@@ -47,6 +49,9 @@ jobs:
4749
- os: ubuntu-latest
4850
os_short: linux
4951

52+
- os: ubuntu-20.04
53+
os_short: oldlinux
54+
5055
- os: windows-latest
5156
os_short: win
5257

AMBuildScript

+26-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
2-
import os, sys
2+
import os, sys, shutil
33

44
class SDK(object):
55
def __init__(self, sdk, ext, aDef, name, platform, dir):
@@ -103,6 +103,7 @@ class ExtensionConfig(object):
103103
self.sm_root = None
104104
self.all_targets = []
105105
self.target_archs = set()
106+
self.libsafetyhook = {}
106107

107108
if builder.options.targets:
108109
target_archs = builder.options.targets.split(',')
@@ -563,14 +564,15 @@ class ExtensionConfig(object):
563564
def AddCDetour(self, binary):
564565
sm_public_path = os.path.join(self.sm_root, 'public')
565566

566-
if os.path.exists(os.path.join(sm_public_path, 'safetyhook', 'safetyhook.cpp')):
567-
binary.sources += [
568-
os.path.join(sm_public_path, 'CDetour', 'detours.cpp'),
569-
os.path.join(sm_public_path, 'safetyhook', 'safetyhook.cpp'),
570-
os.path.join(sm_public_path, 'safetyhook', 'Zydis.c')
571-
]
572-
binary.compiler.cxxincludes += [ os.path.join(sm_public_path, 'safetyhook') ]
573-
binary.compiler.includes += [ os.path.join(sm_public_path, 'safetyhook') ]
567+
if os.path.exists(os.path.join(sm_public_path, 'safetyhook')):
568+
binary.sources += [ os.path.join(sm_public_path, 'CDetour', 'detours.cpp') ]
569+
binary.compiler.cxxincludes += [ os.path.join(builder.sourcePath, 'safetyhook', 'include') ]
570+
571+
for task in self.libsafetyhook:
572+
if task.target.arch == binary.compiler.target.arch:
573+
binary.compiler.linkflags += [task.binary]
574+
return
575+
raise Exception('No suitable build of safetyhook was found.')
574576
else:
575577
binary.sources += [
576578
os.path.join(sm_public_path, 'CDetour', 'detours.cpp'),
@@ -606,6 +608,11 @@ class ExtensionConfig(object):
606608
self.ConfigureForExtension(context, binary.compiler)
607609
return binary
608610

611+
class SafetyHookShim(object):
612+
def __init__(self):
613+
self.all_targets = {}
614+
self.libsafetyhook = {}
615+
609616
if getattr(builder, 'target', None) is not None:
610617
sys.stderr.write("Your output folder was configured for AMBuild 2.1.\n")
611618
sys.stderr.write("Please remove your output folder and reconfigure to continue.\n")
@@ -615,6 +622,16 @@ Extension = ExtensionConfig()
615622
Extension.detectSDKs()
616623
Extension.configure()
617624

625+
if os.path.exists(os.path.join(Extension.sm_root, 'public', 'safetyhook')):
626+
# we need to pull safetyhook in locally because ambuild does not take kindly to outside relpaths
627+
safetyhook_dest = Normalize(builder.sourcePath + '/safetyhook/')
628+
shutil.copytree(os.path.join(Extension.sm_root, 'public', 'safetyhook'), safetyhook_dest, dirs_exist_ok=True)
629+
630+
SafetyHook = SafetyHookShim()
631+
SafetyHook.all_targets = Extension.all_targets
632+
builder.Build('safetyhook/AMBuilder', {'SafetyHook': SafetyHook })
633+
Extension.libsafetyhook = SafetyHook.libsafetyhook
634+
618635
# This will clone the list and each cxx object as we recurse, preventing child
619636
# scripts from messing up global state.
620637
builder.targets = builder.CloneableList(Extension.all_targets)

0 commit comments

Comments
 (0)