mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-11-04 00:27:23 +01:00 
			
		
		
		
	pbot-vm: remove/replace -Wno-unused with -Wno-unused-parameter
				
					
				
			This commit is contained in:
		
							parent
							
								
									1b9e482396
								
							
						
					
					
						commit
						13c117e360
					
				@ -22,7 +22,7 @@ sub initialize {
 | 
			
		||||
 | 
			
		||||
  $self->{sourcefile}      = 'prog.c';
 | 
			
		||||
  $self->{execfile}        = 'prog';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused -pedantic -Wfloat-equal -Wshadow -std=c11 -lm -Wfatal-errors';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -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 -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 -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 -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 -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 -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -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 -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -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 -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 -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 -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 -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 -pedantic -Wfloat-equal -Wshadow -std=c89 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -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 -pedantic -Wfloat-equal -Wshadow -std=c99 -lm -Wfatal-errors -fsanitize=integer,undefined,alignment';
 | 
			
		||||
  $self->{default_options} = '-Wextra -Wall -Wno-unused-parameter -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 -pedantic -Wfloat-equal -Wshadow -lm -Wfatal-errors -fsanitize=alignment,undefined';
 | 
			
		||||
  $self->{default_options} = '-std=c++14 -Wextra -Wall -Wno-unused-parameter -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';
 | 
			
		||||
 | 
			
		||||
@ -25,8 +25,8 @@ use PBot::Imports;
 | 
			
		||||
# These are set by the /misc/update_version script
 | 
			
		||||
use constant {
 | 
			
		||||
    BUILD_NAME     => "PBot",
 | 
			
		||||
    BUILD_REVISION => 4780,
 | 
			
		||||
    BUILD_DATE     => "2024-08-13",
 | 
			
		||||
    BUILD_REVISION => 4781,
 | 
			
		||||
    BUILD_DATE     => "2024-08-17",
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
sub initialize {}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user