mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
make $if work with includes: skip the body if the target is different
This commit is contained in:
parent
9faefe85e1
commit
6db7518189
@ -30,7 +30,31 @@ fn (p mut Parser) comp_time() {
|
|||||||
p.genln('#ifdef $ifdef_name')
|
p.genln('#ifdef $ifdef_name')
|
||||||
}
|
}
|
||||||
p.check(.lcbr)
|
p.check(.lcbr)
|
||||||
|
os := os_from_string(name)
|
||||||
|
if p.fileis('runtime.v') && os != p.os {
|
||||||
|
// `$if os {` for a different target, skip everything inside
|
||||||
|
// to avoid compilation errors (like including <windows.h>
|
||||||
|
// on non-Windows systems)
|
||||||
|
mut stack := 1
|
||||||
|
for {
|
||||||
|
if p.tok == .lcbr {
|
||||||
|
stack++
|
||||||
|
} else if p.tok == .rcbr {
|
||||||
|
stack--
|
||||||
|
}
|
||||||
|
if p.tok == .eof {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if stack <= 0 && p.tok == .rcbr {
|
||||||
|
//p.warn('exiting $stack')
|
||||||
|
p.next()
|
||||||
|
break
|
||||||
|
}
|
||||||
|
p.next()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
p.statements_no_rcbr()
|
p.statements_no_rcbr()
|
||||||
|
}
|
||||||
if ! (p.tok == .dollar && p.peek() == .key_else) {
|
if ! (p.tok == .dollar && p.peek() == .key_else) {
|
||||||
p.genln('#endif')
|
p.genln('#endif')
|
||||||
}
|
}
|
||||||
|
@ -529,18 +529,15 @@ fn (v mut V) gen_main_end(return_statement string){
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn final_target_out_name(out_name string) string {
|
fn final_target_out_name(out_name string) string {
|
||||||
mut cmd := if out_name.starts_with('/') {
|
$if windows {
|
||||||
|
return out_name.replace('/', '\\') + '.exe'
|
||||||
|
}
|
||||||
|
return if out_name.starts_with('/') {
|
||||||
out_name
|
out_name
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
'./' + out_name
|
'./' + out_name
|
||||||
}
|
}
|
||||||
$if windows {
|
|
||||||
cmd = out_name
|
|
||||||
cmd = cmd.replace('/', '\\')
|
|
||||||
cmd += '.exe'
|
|
||||||
}
|
|
||||||
return cmd
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (v V) run_compiled_executable_and_exit() {
|
fn (v V) run_compiled_executable_and_exit() {
|
||||||
@ -895,18 +892,7 @@ fn new_v(args[]string) &V {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
switch target_os {
|
_os = os_from_string(target_os)
|
||||||
case 'linux': _os = .linux
|
|
||||||
case 'windows': _os = .windows
|
|
||||||
case 'mac': _os = .mac
|
|
||||||
case 'freebsd': _os = .freebsd
|
|
||||||
case 'openbsd': _os = .openbsd
|
|
||||||
case 'netbsd': _os = .netbsd
|
|
||||||
case 'dragonfly': _os = .dragonfly
|
|
||||||
case 'msvc': _os = .msvc
|
|
||||||
case 'js': _os = .js
|
|
||||||
case 'solaris': _os = .solaris
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// Location of all vlib files
|
// Location of all vlib files
|
||||||
vroot := os.dir(os.executable())
|
vroot := os.dir(os.executable())
|
||||||
@ -1097,3 +1083,21 @@ fn vhash() string {
|
|||||||
fn cescaped_path(s string) string {
|
fn cescaped_path(s string) string {
|
||||||
return s.replace('\\','\\\\')
|
return s.replace('\\','\\\\')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn os_from_string(os string) OS {
|
||||||
|
switch os {
|
||||||
|
case 'linux': return .linux
|
||||||
|
case 'windows': return .windows
|
||||||
|
case 'mac': return .mac
|
||||||
|
case 'freebsd': return .freebsd
|
||||||
|
case 'openbsd': return .openbsd
|
||||||
|
case 'netbsd': return .netbsd
|
||||||
|
case 'dragonfly': return .dragonfly
|
||||||
|
case 'msvc': return .msvc
|
||||||
|
case 'js': return .js
|
||||||
|
case 'solaris': return .solaris
|
||||||
|
case 'android': return .android
|
||||||
|
}
|
||||||
|
println('bad os $os') // todo panic?
|
||||||
|
return .linux
|
||||||
|
}
|
||||||
|
@ -1 +1,14 @@
|
|||||||
module runtime
|
module runtime
|
||||||
|
|
||||||
|
$if linux {
|
||||||
|
#include <sys/sysinfo.h>
|
||||||
|
fn C.get_nprocs() int
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub fn nr_cpus() int {
|
||||||
|
$if linux {
|
||||||
|
return C.get_nprocs()
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
module runtime
|
module runtime
|
||||||
|
|
||||||
pub fn nr_cpus() int {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
module runtime
|
module runtime
|
||||||
|
|
||||||
pub fn nr_cpus() int {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user