This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // WARNING: This test script will muck your sclang_conf.yaml file. Back it up before running! | |
| ( | |
| // these should give consistent results between old and new versions | |
| // test on non-ASCII user | |
| thisProcess.platform.userHomeDir.postln; | |
| thisProcess.platform.systemAppSupportDir.postln; | |
| thisProcess.platform.userAppSupportDir.postln; | |
| thisProcess.platform.systemExtensionDir.postln; | |
| thisProcess.platform.userExtensionDir.postln; |
- Have you searched for existing issues (open and close) to see if the bug or feature request has already been reported?
- If this is a bug report, are you running the latest version of SuperCollider? If not, please update to the latest version and verify that the issue still occurs before proceding.
- Have you read the Contributing Guide?
- Are you creating an issue in the correct repository? (if this related to a dependency, please create the issue on that repository)
Ready? Great! Please provide the following details:
First and foremost, thank you! We appreciate that you want to contribute to SuperCollider. Your time is valuable, and your contributions mean a lot to us.
What does "contributing" mean?
Creating an issue is the simplest form of contributing to a project. But there are many ways to contribute, including the following:
- Updating or correcting documentation
- Feature requests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| C:/Users/brianheim/sc/supercollider/external_libraries/TLSF-2.4.6/src/tlsf.c: In function 'init_memory_pool': | |
| C:/Users/brianheim/sc/supercollider/external_libraries/TLSF-2.4.6/src/tlsf.c:493:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |
| if (((unsigned long) mem_pool & PTR_MASK)) { | |
| ^ | |
| C:/Users/brianheim/sc/supercollider/external_libraries/TLSF-2.4.6/src/tlsf.c: In function 'add_new_area': | |
| C:/Users/brianheim/sc/supercollider/external_libraries/TLSF-2.4.6/src/tlsf.c:553:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |
| if ((unsigned long) ib1 == (unsigned long) lb0 + BHDR_OVERHEAD) { | |
| ^ | |
| C:/Users/brianheim/sc/supercollider/external_libraries/TLSF-2.4.6/src/tlsf.c:553:36: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |
| if ((unsigned long) ib1 == (unsigned long) lb0 + BHDR_OVERHEAD) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Untitled.sc (TODO: Actual name for class) | |
| * | |
| * Tests for the SuperCollider 3 lexer, parser, compiler | |
| * Original author: Brian Heim 2017-02-19 | |
| * This code is licensed under the GPLv3 | |
| * | |
| * Note: performance really matters for some of these things. I | |
| * did a lot of intense benchmarking and came up with low-level | |
| * functions and loops that are blazingly fast for SC. I left in | |
| * my old code in some cases so you can benchmark yourself if |
NewerOlder