compiler/extensions.st
changeset 534 a949c4fe44df
parent 529 439c4057517f
child 537 fb212e14d1f4
--- a/compiler/extensions.st	Wed Aug 26 23:34:48 2015 +0100
+++ b/compiler/extensions.st	Sat Aug 29 07:56:14 2015 +0100
@@ -407,13 +407,15 @@
 !PPParser methodsFor:'*petitcompiler'!
 
 compile: options
+    | configuration |
+
     self assert: (options isKindOf: PPCCompilationOptions).
-    
-    ^ PPCConfiguration default
-        options: options;
-        compile: self
 
-    "Modified: / 24-08-2015 / 23:39:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    configuration := PPCConfiguration default.
+    configuration context options: options.
+    ^ configuration compile: self
+
+    "Modified: / 28-08-2015 / 14:25:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPParser methodsFor:'*petitcompiler'!