mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-11-04 08:37:24 +01:00 
			
		
		
		
	pbot-vm: make clang2x default language; add -Wno-unused-variable
This commit is contained in:
		
							parent
							
								
									002f7a23d1
								
							
						
					
					
						commit
						7da755d248
					
				@ -246,7 +246,7 @@ sub configure_context($context, $config) {
 | 
			
		||||
    # set any undefined values to default values
 | 
			
		||||
    $context->{nick}         //= 'vm';
 | 
			
		||||
    $context->{channel}      //= 'vm';
 | 
			
		||||
    $context->{lang}         //= 'c2x';
 | 
			
		||||
    $context->{lang}         //= 'clang2x';
 | 
			
		||||
    $context->{'vm-domain'}  //= DOMAIN;
 | 
			
		||||
    $context->{'vm-addr'}    //= ADDR;
 | 
			
		||||
    $context->{'vm-health'}  //= HEALTH;
 | 
			
		||||
 | 
			
		||||
@ -22,7 +22,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'gcc -ggdb -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors -fsanitize=alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors -fsanitize=alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'gcc -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c2x -lm -Wfatal-errors -fsanitize=alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c2x -lm -Wfatal-errors -fsanitize=alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'gcc -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'gcc -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'gcc -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -11,7 +11,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{options_paste}   = '-fcaret-diagnostics';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-caret-diagnostics';
 | 
			
		||||
  $self->{cmdline}         = 'clang -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c2x -lm -Wfatal-errors -fsanitize=integer,alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c2x -lm -Wfatal-errors -fsanitize=integer,alignment,undefined -fsanitize-address-use-after-scope -fno-omit-frame-pointer';
 | 
			
		||||
  $self->{options_paste}   = '-fcaret-diagnostics';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-caret-diagnostics';
 | 
			
		||||
  $self->{cmdline}         = 'clang -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{options_paste}   = '-fcaret-diagnostics';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-caret-diagnostics';
 | 
			
		||||
  $self->{cmdline}         = 'clang -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{options_paste}   = '-fcaret-diagnostics';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-caret-diagnostics';
 | 
			
		||||
  $self->{cmdline}         = 'clang -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -15,7 +15,7 @@ sub initialize {
 | 
			
		||||
  $self->{name}            = 'clang++';
 | 
			
		||||
  $self->{sourcefile}      = 'prog.cpp';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-std=c++14 -Wextra -Wall -Wno-unused-parameter -pedantic -Wfloat-equal -Wshadow -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-std=c++14 -Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{options_paste}   = '-fcaret-diagnostics';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-caret-diagnostics';
 | 
			
		||||
  $self->{cmdline}         = 'clang++-3.7 -I/usr/include/x86_64-linux-gnu/c++/5/ -gdwarf-2 -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -15,7 +15,7 @@ sub initialize {
 | 
			
		||||
  $self->{name}            = 'c++';
 | 
			
		||||
  $self->{sourcefile}      = 'prog.cpp';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-std=c++14 -Wextra -Wall -Wno-unused -pedantic -Wfloat-equal -Wshadow -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-std=c++14 -Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -pedantic -Wfloat-equal -Wshadow -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{options_paste}   = '-fdiagnostics-show-caret';
 | 
			
		||||
  $self->{options_nopaste} = '-fno-diagnostics-show-caret';
 | 
			
		||||
  $self->{cmdline}         = 'g++ -ggdb -g3 $sourcefile $options -o $execfile';
 | 
			
		||||
 | 
			
		||||
@ -25,8 +25,8 @@ use PBot::Imports;
 | 
			
		||||
# These are set by the /misc/update_version script
 | 
			
		||||
use constant {
 | 
			
		||||
    BUILD_NAME     => "PBot",
 | 
			
		||||
    BUILD_REVISION => 4783,
 | 
			
		||||
    BUILD_DATE     => "2024-09-08",
 | 
			
		||||
    BUILD_REVISION => 4784,
 | 
			
		||||
    BUILD_DATE     => "2024-09-19",
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
sub initialize {}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user