ADVERTISEMENT

BCDA denies forcing out farmers for US-backed Pax Silica

Published Aug 6, 2026 03:19 pm
BCDA President and Chief Executive Officer Joshua Bingcang
BCDA President and Chief Executive Officer Joshua Bingcang
The potential displacement of farmers from the site of the proposed Pax Silica artificial intelligence (AI) hub in New Clark City is not expected to happen anytime soon, according to the Bases Conversion and Development Authority (BCDA).
Amid claims that the state-run firm is buying land to evict farmers and make way for the ambitious project, BCDA President and Chief Executive Officer Joshua Bingcang categorically dismissed the reports as “fake news.”
“How are we supposed to buy it when it's our land? In the first place, it's government land,” he told reporters on Thursday, Aug. 6.
Earlier reports claimed the BCDA was offering to buy farmers’ land for only ₱30 per square meter, or roughly ₱300,000 per hectare.
Bingcang stressed that the title to the more than 1,600 hectares of land slated for the industrial hub has long belonged to the BCDA, adding that farmers living and working on the property have simply been permitted to do so by the government.
Still, Bingcang noted that the government will eventually have no choice but to displace the farmers once the project is fully developed.
“Some of the farmers there would already be retired by the time we need this additional land. But we'll provide assistance—they won't be neglected,” he said.
The BCDA earlier stated that it has already allocated “hundreds of hectares” within New Clark City in Tarlac for agricultural developments and relocation areas to support affected farmers.
The proposed AI industrial hub is a joint initiative overseen by the United States and the Philippines under Pax Silica, a program aimed at securing supply chains for key materials critical to global AI infrastructure.
Dubbed an economic security zone, the project is expected to attract investment in sectors such as advanced manufacturing, critical mineral processing, and digital infrastructure, including data centers.
While details remain under evaluation, the project is already drawing criticism over its potential strain on energy and water resources, as well as its exposure to geopolitical risks.
In a separate interview, Philippine Exporters Confederation Inc. (Philexport) President Sergio Ortiz-Luis Jr. urged the government to resolve all public concerns before committing to a framework agreement with the US.
Beyond environmental impacts, Ortiz-Luis said the government must clarify whether the facility could turn into a US military installation or be used for weapons manufacturing.
He added that the Philippines must ensure the project remains viable over the long term, warning that the Trump administration could shift its priorities at any time.
“We're moving faster than transparency and answering concerns,” Ortiz-Luis said.
To address community pushback, Bingcang said he has been consulting with local leaders to address their concerns directly.
“We explained that this is a good project. We're assuring them we will address all the concerns of all stakeholders. And it's good that these are coming out now because it's part of the consultation that we're doing,” Bingcang said.
Negotiations between the Philippines and the US are ongoing to establish a long-term framework covering the technical, legal, and commercial policies governing the AI hub, with a target signing set for November.
Once finalized, both parties will proceed to detailed project planning, which will involve further consultations with local communities, the private sector, and relevant government agencies.

Related Tags

Bases Conversion and Development Authority (BCDA) New Clark City Pax Silica
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ static_articles_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.