hi olaf, > when i stop jack with qjackctl supernova does not stop: [snip] > it also does not reconnect to jack when i restart jack.
it is currently a `stupid' jack application. no care is taken to do a proper
cleanup, if jack terminates ...
> all channels bigger 1 are destorted in the way that the buffer is not
> written in the right way.
>
> booting 57110
> localhost
> plugin commands not implemented: pluginCmdDemo
> Supernova booting
> compiled for debugging
> Warning: scheduler queue is not lockfree!
hrm ... the code seems to be generated for generic x86, meaning, that there is
no support for cmpxchg8b. in a way this is nice, because the code won't crash
the machine when running supernova on an i486 cpu ...
nevertheless, can you test this patch?
thnx, tim
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -87,6 +87,8 @@ if(CMAKE_COMPILER_IS_GNUCXX)
# cmpxchg8b is available on all intel apples
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=i686 -msse -msse2
-mfpmath=sse")
endif()
+ elseif (NOT NATIVE)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=generic")
endif()
endif(CMAKE_COMPILER_IS_GNUCXX)
--
[email protected]
http://tim.klingt.org
/"\ ASCII Ribbon Campaign
\ / no HTML in email & vCards
X no proprietary attachments
/ \ use open standards
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ nova-dev mailing list [email protected] http://klingt.org/cgi-bin/mailman/listinfo/nova-dev http://tim.klingt.org/nova
