From 0159b72dbf048b0aa7d7b9ae85715205cb801e50 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 14 Nov 2021 18:06:58 +0100 Subject: Evaluate externals in configure step end read from config map during compilation. --- src/libctor.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/libctor.h') diff --git a/src/libctor.h b/src/libctor.h index bcbe3a5..a5fd249 100644 --- a/src/libctor.h +++ b/src/libctor.h @@ -73,6 +73,7 @@ struct ExternalConfiguration std::vector cflags; // flags for c compiler std::vector ldflags; // flags for linker std::vector asmflags; // flags for asm translator + std::vector libs; // libraries }; using ExternalConfigurations = std::vector; @@ -111,6 +112,7 @@ struct Configuration std::map env; // env used when last calling configure std::map tools; // tools + std::map> externals; }; const Configuration& configuration(); -- cgit v1.2.3