diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-05-21 13:53:07 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-05-21 14:02:18 +0200 |
| commit | 9bc87082cec1dc078a6c9c1d62098aced5ea8331 (patch) | |
| tree | 1ff318c447bc43fb8a0f4cbf15c824bc18757ce2 /src/add_threshold/implem.mk | |
| parent | 79ef56dfc57d18eb86df36bf5bb39c039f541e08 (diff) | |
| download | lilliput-ae-implem-9bc87082cec1dc078a6c9c1d62098aced5ea8331.tar.xz | |
Réutilisation des multiplications dans l'implémentation FELICS
Plutôt que d'ajouter -Wno-unused-functin, on pourrait aussi déclarer
les multiplications "static inline", ce qui par convention esquive les
avertissements sur la non-utilisation.
Diffstat (limited to 'src/add_threshold/implem.mk')
| -rw-r--r-- | src/add_threshold/implem.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/add_threshold/implem.mk b/src/add_threshold/implem.mk index 7e3ac8e..8d4d4a1 100644 --- a/src/add_threshold/implem.mk +++ b/src/add_threshold/implem.mk @@ -8,8 +8,9 @@ tests = $(filter-out test-tweakey,$(basename $(wildcard test-*.c))) # differ significantly. traces = $(basename $(wildcard traces-*.c)) + # Don't trigger warnings for "a&b ^ c". -CFLAGS += -Wno-parentheses +$(results_dir)/src/cipher.o: CFLAGS += -Wno-parentheses # Build dependencies: add random module; remove unused tests/traces. |
