diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-14 12:26:52 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-14 12:29:04 +0200 |
commit | 28bfc5cd081458313fa8601133386209b23deb12 (patch) | |
tree | 7d0f3cef22d46e803efe784c3d8058b6996cb602 /gnu/packages/cpp.scm | |
parent | 006bf1ba97b2e941482e72f6997f042abe52c6fe (diff) |
gnu: cpp: Mention that autoload prevents module cycles.
* gnu/packages/cpp.scm: Add a comment on the #:autoload to explain that
serialization depends on cpp.
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index e79b48a9b9..237e232078 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -103,6 +103,8 @@ #:use-module (gnu packages web) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) + ;; Using autoload to avoid a cycle. + ;; Note that (gnu packages serialization) has #:use-module (gnu packages cpp) #:autoload (gnu packages serialization) (cereal) #:use-module (ice-9 match)) |