Skip to content

Commit

Permalink
Rework DSP expansion by creating a map of <ID, expression> and sharin…
Browse files Browse the repository at this point in the history
…g the IDs. Set version to 2.38.12.
  • Loading branch information
sletz committed Dec 11, 2021
1 parent fe022c9 commit 3b3e13a
Show file tree
Hide file tree
Showing 17 changed files with 433 additions and 130 deletions.
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAUST compiler, Version 2.38.11
FAUST compiler, Version 2.38.12
Copyright (C) 2003-2019 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := 2.38.11
version := 2.38.12

system ?= $(shell uname -s)

Expand Down
2 changes: 1 addition & 1 deletion build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project (faust)

#######################################
# versions management
set (VERSION 2.38.11)
set (VERSION 2.38.12)
macro (get_major_minor_patch version)
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\1" VERSION_MAJOR ${version} )
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\2" VERSION_MINOR ${version} )
Expand Down
2 changes: 1 addition & 1 deletion build/MakeRelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo off
IF [%1]==[] GOTO USAGE
IF NOT EXIST %1 GOTO USAGE

SET VERSION=2.38.11
SET VERSION=2.38.12
SET BUILD=%1
SET FAUSTGENVERSION=1.53
SET FAUSTLIVE=../../faustlive
Expand Down
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ system := $(shell echo $(system) | grep MINGW > /dev/null && echo MINGW || echo
# output directories
FAUSTDIR ?= faustdir
IOSDIR := iosdir
VERSION := 2.38.11
VERSION := 2.38.12

#===============================================================
# current generator and backends
Expand Down
4 changes: 2 additions & 2 deletions compiler/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% man(1) Version 2.38.11 (10-December-2021) | Faust man page
% man(1) Version 2.38.12 (11-December-2021) | Faust man page

NAME
====
Expand Down Expand Up @@ -27,7 +27,7 @@ Input options:

**-A** \<dir> **--architecture-dir** \<dir> add the directory \<dir> to the architecture search path.

**-I** \<dir> **--import-dir** \<dir> add the directory \<dir> to the import search path.
**-I** \<dir> **--import-dir** \<dir> add the directory \<dir> to the libraries search path.

**-L** \<file> **--library** \<file> link with the LLVM module \<file>.

Expand Down

0 comments on commit 3b3e13a

Please sign in to comment.