diff --git a/Makefile b/Makefile
index 8b168080c3e2d39fc9be153c4bd0593ebdd06930..58d4f52da27c9e76dbcf54ef7c83a30eb4f1211f 100644
--- a/Makefile
+++ b/Makefile
@@ -147,6 +147,9 @@ test-all: doc test-all-lisps
 test-all-no-stop:
 	-make doc ; for l in ${lisps} ; do make t l=$$l ; make u l=$$l ; done ; true
 
+extract-all-tagged-asdf:
+	./test/run-tests.sh -H
+
 # Note that the debian git at git://git.debian.org/git/pkg-common-lisp/cl-asdf.git is stale,
 # as we currently build directly from upstream at git://common-lisp.net/projects/asdf/asdf.git
 debian-package: mrproper
diff --git a/asdf.asd b/asdf.asd
index bcdea1c5a38ce93b83326c68a2a8ce932a626901..619d5ea2bffd8b2f1c497e70dad9249826f751bb 100644
--- a/asdf.asd
+++ b/asdf.asd
@@ -37,7 +37,7 @@
   :mailto "asdf-devel@common-lisp.net"
   :source-control (:git "git://common-lisp.net/projects/asdf/asdf.git")
   :version (:read-file-form "version.lisp-expr")
-  :build-operation monolithic-load-compiled-concatenated-source-op
+  :build-operation monolithic-concatenate-source-op
   :build-pathname "build/asdf" ;; our target
   :around-compile call-without-redefinition-warnings ;; we need be the same as asdf-driver
   :depends-on (:asdf/header :asdf/driver)
@@ -74,7 +74,7 @@
   :licence "MIT"
   :description "Another System Definition Facility"
   :long-description "ASDF builds Common Lisp software organized into defined systems."
-  :version "2.32.13" ;; to be automatically updated by make bump-version
+  :version "2.32.18" ;; to be automatically updated by make bump-version
   :depends-on ()
   #+asdf3 :encoding #+asdf3 :utf-8
   ;; For most purposes, asdf itself specially counts as a builtin system.
diff --git a/bundle.lisp b/bundle.lisp
index 05079aec2fa0ac8c8acb39a50d9bc9d7710a0496..2da6f0e2335ba3ea2a9ef1739142b7d42ef92b67 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -397,7 +397,7 @@
                   s)))))
 
   #-(or ecl mkcl)
-  (defmethod perform ((o fasl-op) (c system))
+  (defmethod perform ((o basic-fasl-op) (c system))
     (let* ((input-files (input-files o c))
            (fasl-files (remove (compile-file-type) input-files :key #'pathname-type :test-not #'equalp))
            (non-fasl-files (remove (compile-file-type) input-files :key #'pathname-type :test #'equalp))
@@ -454,13 +454,13 @@
 #+mkcl
 (with-upgradability ()
   (defmethod perform ((o lib-op) (s system))
-    (apply #'compiler::build-static-library (first output)
+    (apply #'compiler::build-static-library (output-file o c)
            :lisp-object-files (input-files o s) (bundle-op-build-args o)))
 
-  (defmethod perform ((o fasl-op) (s system))
-    (apply #'compiler::build-bundle (second output)
+  (defmethod perform ((o basic-fasl-op) (s system))
+    (apply #'compiler::build-bundle (output-file o c) ;; second???
            :lisp-object-files (input-files o s) (bundle-op-build-args o)))
-
+}
   (defun bundle-system (system &rest args &key force (verbose t) version &allow-other-keys)
     (declare (ignore force verbose version))
     (apply #'operate 'binary-op system args)))
diff --git a/contrib/detect-multiply-used-files.lisp b/contrib/detect-multiply-used-files.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..a8f0909f608f6fc8c8d39029158d5908324d9ab6
--- /dev/null
+++ b/contrib/detect-multiply-used-files.lisp
@@ -0,0 +1,30 @@
+(uiop:define-package :detect-multiply-used-files
+  (:use :asdf :uiop :common-lisp)
+  (:export #:find-fishy-components #:register-component-files #:*file-components*))
+
+(in-package :detect-multiply-used-files)
+
+(defparameter *file-components* (make-hash-table :test 'equal))
+
+(defun register-component-files (component)
+  (let ((c (find-component () component)))
+    (if-let (p (component-pathname c))
+      (pushnew (component-find-path c) (gethash (namestring p) *file-components*)))
+    (when (typep c 'parent-component)
+      (dolist (cc (component-children c))
+        (register-component-files cc)))))
+
+(defun table-keys (table)
+  (loop :for s :being :the :hash-keys :of table :collect s))
+
+(defun find-fishy-components ()
+  (clrhash *file-components*)
+  (map () 'register-component-files (table-keys asdf::*defined-systems*))
+  (loop :for p :in (sort (table-keys *file-components*) 'string<)
+        :for l = (gethash p *file-components*)
+        :when (and (file-pathname-p p) (not (length=n-p l 1)))
+        :do (format t "~&~S =>~{ ~S~}~%" p l)))
+
+#| ;; Use it like that:
+(detect-multiply-used-files:find-fishy-components)
+|#
diff --git a/header.lisp b/header.lisp
index 53f2d5dc5eec533b961ff586ed9d65d85aa64a69..58c6c14dca064a33e0addc4a236bf1b5b063692e 100644
--- a/header.lisp
+++ b/header.lisp
@@ -1,5 +1,5 @@
 ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
-;;; This is ASDF 2.32.13: Another System Definition Facility.
+;;; This is ASDF 2.32.18: Another System Definition Facility.
 ;;;
 ;;; Feedback, bug reports, and patches are all welcome:
 ;;; please mail to <asdf-devel@common-lisp.net>.
diff --git a/interface.lisp b/interface.lisp
index 29f8e3ab168339a840f91a9470d4cd815ab66fa2..2aeed021f2a9bc8701bf047d00aaffb95a4ef69c 100644
--- a/interface.lisp
+++ b/interface.lisp
@@ -150,6 +150,7 @@
    #:system-registered-p #:registered-systems #:already-loaded-systems
    #:resolve-location
    #:asdf-message
+   #:*user-cache*
    #:user-output-translations-pathname
    #:system-output-translations-pathname
    #:user-output-translations-directory-pathname
diff --git a/test/run-tests.sh b/test/run-tests.sh
index 578125241974f41203fee715600e58a3fde6df9a..feb7876d787cdccdc13fc212f4475ed78bac0a0e 100755
--- a/test/run-tests.sh
+++ b/test/run-tests.sh
@@ -327,7 +327,7 @@ valid_upgrade_test_p () {
 run_upgrade_tests () {
     cd ${ASDFDIR}
     mkdir -p  build/results
-    rm -f build/*.*f* ## Remove stale FASLs from ASDF 1.x, especially when different implementations have same name
+    rm -f build/*.*f* uiop/*.*f* test/*.*f* ## Remove stale FASLs from ASDF 1.x, especially when different implementations have same name
     ASDF_OUTPUT_TRANSLATIONS="(:output-translations (\"${ASDFDIR}\" (\"${ASDFDIR}/build/fasls/\" :implementation \"asdf/\")) (t (\"${ASDFDIR}/build/fasls/\" :implementation \"root/\")) :ignore-inherited-configuration)"
     export ASDF_OUTPUT_TRANSLATIONS
     su=test/script-support.lisp
diff --git a/test/script-support.lisp b/test/script-support.lisp
index 7d0abcf67050249e1fb8d79ca46947a124664dd7..ea471638df2c120bc79a8f27ad082c48392342b7 100644
--- a/test/script-support.lisp
+++ b/test/script-support.lisp
@@ -523,9 +523,12 @@ is bound, write a message and exit on an error.  If
   (setf *package* (find-package :asdf-test))
   t)
 
-
 (defun load-asdf-lisp-and-test-uiop (&optional tag)
   (load-asdf-lisp tag)
+  (unless (and (member :asdf *features*)
+               (or (member :asdf3 *features*)
+                   (and (member :asdf2 *features*) (acall :version-satisfies (acall :asdf-version) "2.11.4"))))
+    (leave-test "UIOP will break ASDF < 2.011.4 - skipping test." 0))
   (configure-asdf)
   (register-directory *asdf-directory*)
   (register-directory *uiop-directory*)
diff --git a/test/test-bundle.script b/test/test-bundle.script
index 04c760efc0c0fbffa33990835b016d25a9558161..0a3bfd32385f4bb89f3202184c365ef631555250 100644
--- a/test/test-bundle.script
+++ b/test/test-bundle.script
@@ -20,15 +20,20 @@
 
 (defparameter *bundle-1* (output-file 'fasl-op :test-bundle-1))
 (defparameter *bundle-2* (output-file 'fasl-op :test-bundle-2))
+(defparameter *mono-bundle-2* (output-file 'monolithic-fasl-op :test-bundle-2))
 (DBG :test-bundle *bundle-1* *bundle-2*)
 (assert-equal (list *bundle-2*)
               (input-files 'load-fasl-op :test-bundle-2))
 (delete-file-if-exists *bundle-1*)
 (delete-file-if-exists *bundle-2*)
+(delete-file-if-exists *mono-bundle-2*)
 (operate 'load-fasl-op :test-bundle-2)
-;; Check that the bundles were indeed created.
+(DBG "Check that the bundles were indeed created.")
 (assert (probe-file *bundle-2*))
 (assert (probe-file *bundle-1*))
-;; Check that the files were indeed loaded.
+(DBG "Check that the files were indeed loaded.")
 (assert (symbol-value (find-symbol* :*file1* :test-package)))
 (assert (symbol-value (find-symbol* :*file3* :test-package)))
+(DBG "Now for the mono-fasl")
+(operate 'monolithic-fasl-op :test-bundle-2)
+(assert (probe-file *mono-bundle-2*))
diff --git a/uiop/configuration.lisp b/uiop/configuration.lisp
index 16dffe6a73c95dd9c02481fe0f0c9a9a2e7950db..f7f363d61c285661fbb978478ea08f8e19bed739 100644
--- a/uiop/configuration.lisp
+++ b/uiop/configuration.lisp
@@ -13,7 +13,7 @@
    #:in-user-configuration-directory #:in-system-configuration-directory
    #:validate-configuration-form #:validate-configuration-file #:validate-configuration-directory
    #:configuration-inheritance-directive-p
-   #:report-invalid-form #:invalid-configuration #:*ignored-configuration-form*
+   #:report-invalid-form #:invalid-configuration #:*ignored-configuration-form* #:*user-cache*
    #:*clear-configuration-hook* #:clear-configuration #:register-clear-configuration-hook
    #:resolve-location #:location-designator-p #:location-function-p #:*here-directory*
    #:resolve-relative-location #:resolve-absolute-location #:upgrade-configuration))
diff --git a/uiop/lisp-build.lisp b/uiop/lisp-build.lisp
index d489f361510eebee11a6162023f5021efc89fdde..49b25d5ba49e083775aa26e1afd71eb1ed32a038 100644
--- a/uiop/lisp-build.lisp
+++ b/uiop/lisp-build.lisp
@@ -14,7 +14,7 @@
    #:compile-condition #:compile-file-error #:compile-warned-error #:compile-failed-error
    #:compile-warned-warning #:compile-failed-warning
    #:check-lisp-compile-results #:check-lisp-compile-warnings
-   #:*uninteresting-compiler-conditions* #:*uninteresting-loader-conditions*
+   #:*uninteresting-conditions* #:*uninteresting-compiler-conditions* #:*uninteresting-loader-conditions*
    ;; Functions & Macros
    #:get-optimization-settings #:proclaim-optimization-settings
    #:call-with-muffled-compiler-conditions #:with-muffled-compiler-conditions
@@ -51,15 +51,16 @@ Note that ASDF ALWAYS raises an error if it fails to create an output file when
   (defvar *previous-optimization-settings* nil)
   (defun get-optimization-settings ()
     "Get current compiler optimization settings, ready to PROCLAIM again"
+    #-(or clisp clozure cmu ecl sbcl scl)
+    (warn "~S does not support ~S. Please help me fix that." 'get-optimization-settings (lisp-implementation))
+    #+clozure (ccl:declaration-information 'optimize nil)
+    #+(or clisp cmu ecl sbcl scl)
     (let ((settings '(speed space safety debug compilation-speed #+(or cmu scl) c::brevity)))
-      #-(or clisp clozure cmu ecl sbcl scl)
-      (warn "~S does not support your implementation. Please help me fix that." 'get-optimization-settings)
       #.`(loop :for x :in settings
-               ,@(or #+clozure '(:for v :in '(ccl::*nx-speed* ccl::*nx-space* ccl::*nx-safety* ccl::*nx-debug* ccl::*nx-cspeed*))
-                     #+ecl '(:for v :in '(c::*speed* c::*space* c::*safety* c::*debug*))
+               ,@(or #+ecl '(:for v :in '(c::*speed* c::*space* c::*safety* c::*debug*))
                      #+(or cmu scl) '(:for f :in '(c::cookie-speed c::cookie-space c::cookie-safety c::cookie-debug c::cookie-cspeed c::cookie-brevity)))
                :for y = (or #+clisp (gethash x system::*optimize*)
-                            #+(or clozure ecl) (symbol-value v)
+                            #+(or ecl) (symbol-value v)
                             #+(or cmu scl) (funcall f c::*default-cookie*)
                             #+sbcl (cdr (assoc x sb-c::*policy*)))
                :when y :collect (list x y))))
@@ -84,7 +85,7 @@ Note that ASDF ALWAYS raises an error if it fails to create an output file when
     (deftype sb-grovel-unknown-constant-condition ()
       '(and style-warning (satisfies sb-grovel-unknown-constant-condition-p))))
 
-  (defvar *uninteresting-compiler-conditions*
+  (defvar *uninteresting-conditions*
     (append
      ;;#+clozure '(ccl:compiler-warning)
      #+cmu '("Deleting unreachable code.")
@@ -93,38 +94,39 @@ Note that ASDF ALWAYS raises an error if it fails to create an output file when
      #+sbcl
      '(sb-c::simple-compiler-note
        "&OPTIONAL and &KEY found in the same lambda list: ~S"
-       sb-int:package-at-variance
-       sb-kernel:uninteresting-redefinition
-       sb-kernel:undefined-alien-style-warning
-       ;; sb-ext:implicit-generic-function-warning ; Controversial. Let's allow it by default.
        #+sb-eval sb-kernel:lexical-environment-too-complex
+       sb-kernel:undefined-alien-style-warning
        sb-grovel-unknown-constant-condition ; defined above.
+       ;; sb-ext:implicit-generic-function-warning ; Controversial. Let's allow it by default.
+       sb-int:package-at-variance
+       sb-kernel:uninteresting-redefinition
        ;; BEWARE: the below four are controversial to include here.
        sb-kernel:redefinition-with-defun
        sb-kernel:redefinition-with-defgeneric
        sb-kernel:redefinition-with-defmethod
        sb-kernel::redefinition-with-defmacro) ; not exported by old SBCLs
      '("No generic function ~S present when encountering macroexpansion of defmethod. Assuming it will be an instance of standard-generic-function.")) ;; from closer2mop
-    "Conditions that may be skipped while compiling")
-
+    "Conditions that may be skipped while compiling or loading Lisp code.")
+  (defvar *uninteresting-compiler-conditions* '()
+    "Additional conditions that may be skipped while compiling Lisp code.")
   (defvar *uninteresting-loader-conditions*
     (append
      '("Overwriting already existing readtable ~S." ;; from named-readtables
        #(#:finalizers-off-warning :asdf-finalizers)) ;; from asdf-finalizers
      #+clisp '(clos::simple-gf-replacing-method-warning))
-    "Additional conditions that may be skipped while loading"))
+    "Additional conditions that may be skipped while loading Lisp code."))
 
 ;;;; ----- Filtering conditions while building -----
 (with-upgradability ()
   (defun call-with-muffled-compiler-conditions (thunk)
     (call-with-muffled-conditions
-     thunk *uninteresting-compiler-conditions*))
+     thunk (append *uninteresting-conditions* *uninteresting-compiler-conditions*)))
   (defmacro with-muffled-compiler-conditions ((&optional) &body body)
     "Run BODY where uninteresting compiler conditions are muffled"
     `(call-with-muffled-compiler-conditions #'(lambda () ,@body)))
   (defun call-with-muffled-loader-conditions (thunk)
     (call-with-muffled-conditions
-     thunk (append *uninteresting-compiler-conditions* *uninteresting-loader-conditions*)))
+     thunk (append *uninteresting-conditions* *uninteresting-loader-conditions*)))
   (defmacro with-muffled-loader-conditions ((&optional) &body body)
     "Run BODY where uninteresting compiler and additional loader conditions are muffled"
     `(call-with-muffled-loader-conditions #'(lambda () ,@body))))
diff --git a/uiop/uiop.asd b/uiop/uiop.asd
index f4833a59fe3f8fda9c48ce3e4a91ad39c16f75f4..fdc451c686cf212466172dff59cf2b14cb036c7f 100644
--- a/uiop/uiop.asd
+++ b/uiop/uiop.asd
@@ -1,6 +1,10 @@
 ;;; -*- mode: lisp -*-
 (in-package :asdf)
 
+(unless (or (member :asdf3 *features*)
+            (and (member :asdf2 *features*) (version-satisfies (asdf:asdf-version) "2.11.4")))
+  (error "UIOP requires ASDF 2.011.4 or later."))
+
 (defun call-without-redefinition-warnings (thunk)
   (handler-bind (((or
                    #+allegro simple-warning
diff --git a/upgrade.lisp b/upgrade.lisp
index a2df667d19d0eba159a183817c4d2a7c47cb51d7..c6935da1acd7822fb55ee404a34485ce9bf64adf 100644
--- a/upgrade.lisp
+++ b/upgrade.lisp
@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO
          ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5.
          ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
          ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
-         (asdf-version "2.32.13")
+         (asdf-version "2.32.18")
          (existing-version (asdf-version)))
     (setf *asdf-version* asdf-version)
     (when (and existing-version (not (equal asdf-version existing-version)))
diff --git a/version.lisp-expr b/version.lisp-expr
index 02ed374b014f074779d90a6472bdf9e79d8f723d..dac6684330e3d091f343f99bb03521cf35f5ec4d 100644
--- a/version.lisp-expr
+++ b/version.lisp-expr
@@ -1 +1 @@
-"2.32.13"
+"2.32.18"