summaryrefslogtreecommitdiff
path: root/slice.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-10-07 10:01:31 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2016-10-07 10:01:31 +0100
commitfe8c93c3c8ead06b9b4dc0daa9a5362a6efd663f (patch)
tree79f7243de845bbbc4dc7217aeccde0be5cb4ff82 /slice.jam
parentAllow control of --dll-export and --ice (diff)
downloadlibadhocutil-fe8c93c3c8ead06b9b4dc0daa9a5362a6efd663f.tar.bz2
libadhocutil-fe8c93c3c8ead06b9b4dc0daa9a5362a6efd663f.tar.xz
libadhocutil-fe8c93c3c8ead06b9b4dc0daa9a5362a6efd663f.zip
Behave more like a normal compiler (write whole file, not append existing one)
Diffstat (limited to 'slice.jam')
-rw-r--r--slice.jam7
1 files changed, 3 insertions, 4 deletions
diff --git a/slice.jam b/slice.jam
index 0ea52ba..434e562 100644
--- a/slice.jam
+++ b/slice.jam
@@ -24,8 +24,8 @@ scanner.register slice-scanner : include ;
type.set-scanner SLICE : slice-scanner ;
generators.register-standard slice.slice2cpp : SLICE : CPP H : <slicer>no ;
-generators.register-standard slice.slicer : SLICE : CPP H : <slicer>yes ;
-generators.register-standard slice.slicer.pure : SLICE : CPP : <slicer>pure ;
+generators.register-standard slice.slicer : SLICE : CPP CPP(slicer-%) H : <slicer>yes ;
+generators.register-standard slice.slicer.pure : SLICE : CPP(slicer-%) : <slicer>pure ;
toolset.flags slice.slice2cpp INCLUDES <include> ;
toolset.flags slice.slice2cpp DLLEXPORT <ice-visibility>public : --dll-export JAM_DLL_PUBLIC ;
@@ -44,12 +44,11 @@ actions slice.slice2cpp
actions slice.slicer
{
slice2cpp -I"$(INCLUDES)" --checksum --output-dir $(1[1]:D) $(2) $(DLLEXPORT) $(ALLOWICE[1])
- slicer -I"$(INCLUDES)" $(2) $(1[1]) $(ALLOWICE[1])
+ slicer -I"$(INCLUDES)" $(2) $(1[2]) $(ALLOWICE[1])
}
actions slice.slicer.pure
{
- truncate -c -s 0 $(1[1])
slicer -I"$(INCLUDES)" $(2) $(1[1]) $(ALLOWICE[1])
}