From 9a727c566e9cf3c5a511e8754b76675a805d0719 Mon Sep 17 00:00:00 2001 From: DiThi Date: Tue, 18 Mar 2025 14:26:21 +0100 Subject: [PATCH] Astc: Compile library with -O3 even in debug builds. --- libs/astc/astc.nim | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/libs/astc/astc.nim b/libs/astc/astc.nim index 23ff09d..0a26701 100644 --- a/libs/astc/astc.nim +++ b/libs/astc/astc.nim @@ -2,28 +2,28 @@ # We need this for the extern "C", not for exposing symbols {.passC:"-DASTCENC_DYNAMIC_LIBRARY".} -{.compile:"astc-encoder/Source/astcenc_averages_and_directions.cpp", -compile:"astc-encoder/Source/astcenc_block_sizes.cpp", -compile:"astc-encoder/Source/astcenc_color_quantize.cpp", -compile:"astc-encoder/Source/astcenc_color_unquantize.cpp", -compile:"astc-encoder/Source/astcenc_compress_symbolic.cpp", -compile:"astc-encoder/Source/astcenc_compute_variance.cpp", -compile:"astc-encoder/Source/astcenc_decompress_symbolic.cpp", -compile:"astc-encoder/Source/astcenc_diagnostic_trace.cpp", -compile:"astc-encoder/Source/astcenc_entry.cpp", -compile:"astc-encoder/Source/astcenc_find_best_partitioning.cpp", -compile:"astc-encoder/Source/astcenc_ideal_endpoints_and_weights.cpp", -compile:"astc-encoder/Source/astcenc_image.cpp", -compile:"astc-encoder/Source/astcenc_integer_sequence.cpp", -compile:"astc-encoder/Source/astcenc_mathlib.cpp", -compile:"astc-encoder/Source/astcenc_mathlib_softfloat.cpp", -compile:"astc-encoder/Source/astcenc_partition_tables.cpp", -compile:"astc-encoder/Source/astcenc_percentile_tables.cpp", -compile:"astc-encoder/Source/astcenc_pick_best_endpoint_format.cpp", -compile:"astc-encoder/Source/astcenc_quantization.cpp", -compile:"astc-encoder/Source/astcenc_symbolic_physical.cpp", -compile:"astc-encoder/Source/astcenc_weight_align.cpp", -compile:"astc-encoder/Source/astcenc_weight_quant_xfer_tables.cpp".} +{.compile("astc-encoder/Source/astcenc_averages_and_directions.cpp","-O3"), +compile("astc-encoder/Source/astcenc_block_sizes.cpp","-O3"), +compile("astc-encoder/Source/astcenc_color_quantize.cpp","-O3"), +compile("astc-encoder/Source/astcenc_color_unquantize.cpp","-O3"), +compile("astc-encoder/Source/astcenc_compress_symbolic.cpp","-O3"), +compile("astc-encoder/Source/astcenc_compute_variance.cpp","-O3"), +compile("astc-encoder/Source/astcenc_decompress_symbolic.cpp","-O3"), +compile("astc-encoder/Source/astcenc_diagnostic_trace.cpp","-O3"), +compile("astc-encoder/Source/astcenc_entry.cpp","-O3"), +compile("astc-encoder/Source/astcenc_find_best_partitioning.cpp","-O3"), +compile("astc-encoder/Source/astcenc_ideal_endpoints_and_weights.cpp","-O3"), +compile("astc-encoder/Source/astcenc_image.cpp","-O3"), +compile("astc-encoder/Source/astcenc_integer_sequence.cpp","-O3"), +compile("astc-encoder/Source/astcenc_mathlib.cpp","-O3"), +compile("astc-encoder/Source/astcenc_mathlib_softfloat.cpp","-O3"), +compile("astc-encoder/Source/astcenc_partition_tables.cpp","-O3"), +compile("astc-encoder/Source/astcenc_percentile_tables.cpp","-O3"), +compile("astc-encoder/Source/astcenc_pick_best_endpoint_format.cpp","-O3"), +compile("astc-encoder/Source/astcenc_quantization.cpp","-O3"), +compile("astc-encoder/Source/astcenc_symbolic_physical.cpp","-O3"), +compile("astc-encoder/Source/astcenc_weight_align.cpp","-O3"), +compile("astc-encoder/Source/astcenc_weight_quant_xfer_tables.cpp","-O3").} type AstcencContext* = object