1
1
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
2
- import os , sys
2
+ import os , sys , shutil
3
3
4
4
class SDK (object ):
5
5
def __init__ (self , sdk , ext , aDef , name , platform , dir ):
@@ -103,6 +103,7 @@ class ExtensionConfig(object):
103
103
self .sm_root = None
104
104
self .all_targets = []
105
105
self .target_archs = set ()
106
+ self .libsafetyhook = {}
106
107
107
108
if builder .options .targets :
108
109
target_archs = builder .options .targets .split (',' )
@@ -563,14 +564,15 @@ class ExtensionConfig(object):
563
564
def AddCDetour (self , binary ):
564
565
sm_public_path = os .path .join (self .sm_root , 'public' )
565
566
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.' )
574
576
else :
575
577
binary .sources += [
576
578
os .path .join (sm_public_path , 'CDetour' , 'detours.cpp' ),
@@ -606,6 +608,11 @@ class ExtensionConfig(object):
606
608
self .ConfigureForExtension (context , binary .compiler )
607
609
return binary
608
610
611
+ class SafetyHookShim (object ):
612
+ def __init__ (self ):
613
+ self .all_targets = {}
614
+ self .libsafetyhook = {}
615
+
609
616
if getattr (builder , 'target' , None ) is not None :
610
617
sys .stderr .write ("Your output folder was configured for AMBuild 2.1.\n " )
611
618
sys .stderr .write ("Please remove your output folder and reconfigure to continue.\n " )
@@ -615,6 +622,16 @@ Extension = ExtensionConfig()
615
622
Extension .detectSDKs ()
616
623
Extension .configure ()
617
624
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
+
618
635
# This will clone the list and each cxx object as we recurse, preventing child
619
636
# scripts from messing up global state.
620
637
builder .targets = builder .CloneableList (Extension .all_targets )
0 commit comments